CefLoadHandler Class |
Namespace: Internal.Xilium.CefGlue
public abstract class CefLoadHandler
The CefLoadHandler type exposes the following members.
Name | Description | |
---|---|---|
CefLoadHandler | Initializes a new instance of the CefLoadHandler class |
Name | Description | |
---|---|---|
Dispose | Releases the unmanaged resources used by the CefLoadHandler and optionally releases the managed resources | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | (Overrides ObjectFinalize.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnLoadEnd |
Called when the browser is done loading a frame. The |frame| value will
never be empty -- call the IsMain() method to check if this frame is the
main frame. Multiple frames may be loading at the same time. Sub-frames may
start or continue loading after the main frame load has ended. This method
will always be called for all frames irrespective of whether the request
completes successfully. For notification of overall browser load status use
OnLoadingStateChange instead.
| |
OnLoadError |
Called when the resource load for a navigation fails or is canceled.
|errorCode| is the error code number, |errorText| is the error text and
|failedUrl| is the URL that failed to load. See net\base\net_error_list.h
for complete descriptions of the error codes.
| |
OnLoadingStateChange |
Called when the loading state has changed. This callback will be executed
twice -- once when loading is initiated either programmatically or by user
action, and once when loading is terminated due to completion, cancellation
of failure. It will be called before any calls to OnLoadStart and after all
calls to OnLoadError and/or OnLoadEnd.
| |
OnLoadStart |
Called when the browser begins loading a frame. The |frame| value will
never be empty -- call the IsMain() method to check if this frame is the
main frame. |transition_type| provides information about the source of the
navigation and an accurate value is only available in the browser process.
Multiple frames may be loading at the same time. Sub-frames may start or
continue loading after the main frame load has ended. This method will
always be called for all frames irrespective of whether the request
completes successfully. For notification of overall browser load status use
OnLoadingStateChange instead.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
MethodInvoke |
Calls the object method by name.
(Defined by ObjectEx.) | |
PropertyGet(String, Object, Boolean) | Overloaded.
Gets the value of the object property by name.
(Defined by ObjectEx.) | |
PropertyGetT(String, Object, Boolean) | Overloaded.
Gets the value of the object property by name.
(Defined by ObjectEx.) | |
PropertySet |
Sets the value of the object property by name.
(Defined by ObjectEx.) |