DocumentLoadErrorEvent Class

DocumentLoadErrorEvent class

The DocumentLoadErrorEvent occurres when the requested resource is not available.

public class DocumentLoadErrorEvent : ErrorEvent

Properties

NameDescription
getBubbles Used to indicate whether or not an event is a bubbling event. If the event can bubble the value is true, else the value is false.
getCancelable Used to indicate whether or not an event can have its default action prevented. If the default action can be prevented the value is true, else the value is false.
getColNo The colno attribute must return the value it was initialized to. When the object is created, this attribute must be initialized to zero. It represents the column number where the error occurred in the script.
getCurrentTarget Used to indicate the IEventTarget whose IEventListeners are currently being processed. This is particularly useful during capturing and bubbling.
getDefaultPrevented Returns true if preventDefault() was invoked while the cancelable attribute value is true, and false otherwise.
getError The error attribute must return the value it was initialized to. When the object is created, this attribute must be initialized to null. Where appropriate, it is set to the object representing the error (e.g. the exception object in the case of an uncaught DOM exception).
getEventPhase Used to indicate which phase of event flow is currently being evaluated.
getFileName The filename attribute must return the value it was initialized to. When the object is created, this attribute must be initialized to the empty String. It represents the absolute URL of the script in which the error originally occurred.
getIsTrusted The isTrusted attribute must return the value it was initialized to. When an event is created the attribute must be initialized to false.
getLineNo The lineno attribute must return the value it was initialized to. When the object is created, this attribute must be initialized to zero. It represents the line number where the error occurred in the script.
getMessage The message attribute must return the value it was initialized to. When the object is created, this attribute must be initialized to the empty String. It represents the error message.
getTarget Used to indicate the IEventTarget to which the event was originally dispatched.
getTimeStamp Used to specify the time (in milliseconds relative to the epoch) at which the event was created. Due to the fact that some systems may not provide this information the value of timeStamp may be not available for all events. When not available, a value of 0 will be returned. Examples of epoch time are the time of the system start or 0:0:0 UTC 1st January 1970.
getType The name of the event (case-insensitive). The name must be an XML name.

Methods

NameDescription
getPlatformType()This method is used to retrieve the ECMAScript object .
initEvent(String, bool, bool)The InitEvent method is used to initialize the value of an Event created through theIDocumentEvent interface.
preventDefault()If an event is cancelable, the PreventDefault method is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur.
stopImmediatePropagation()Invoking this method prevents event from reaching any event listeners registered after the current one and when dispatched in a tree also prevents event from reaching any other objects.
stopPropagation()The StopPropagation method is used prevent further propagation of an event during event flow.

See Also