[This is preliminary documentation and is subject to change.]
The CefLoadHandler type exposes the following members.Constructors
Name | Description | |
---|---|---|
CefLoadHandler | Initializes a new instance of the CefLoadHandler class |
Methods
Name | Description | |
---|---|---|
Dispose | Releases the unmanaged resources used by the CefLoadHandler and optionally releases the managed resources | |
Equals | (Inherited from Object.) | |
Finalize | (Overrides Object Finalize .) | |
GetHashCode |
Serves as a hash function for a particular type.
(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.
| |
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.
| |
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. 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
may not be called for a particular frame if the load request for that frame
fails. For notification of overall browser load status use
OnLoadingStateChange instead.
| |
ToString | (Inherited from Object.) |
Properties
Name | Description | |
---|---|---|
SyncRoot |
See Also