[This is preliminary documentation and is subject to change.]
The CefRenderProcessHandler type exposes the following members.Constructors
Name | Description | |
---|---|---|
CefRenderProcessHandler | Initializes a new instance of the CefRenderProcessHandler class |
Methods
Name | Description | |
---|---|---|
Dispose | Releases the unmanaged resources used by the CefRenderProcessHandler 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.) | |
GetLoadHandler |
Return the handler for browser load status events.
| |
GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
MemberwiseClone |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
OnBeforeNavigation |
Called before browser navigation. Return true to cancel the navigation or
false to allow the navigation to proceed. The |request| object cannot be
modified in this callback.
| |
OnBrowserCreated |
Called after a browser has been created. When browsing cross-origin a new
browser will be created before the old browser with the same identifier is
destroyed.
| |
OnBrowserDestroyed |
Called before a browser is destroyed.
| |
OnContextCreated |
Called immediately after the V8 context for a frame has been created. To
retrieve the JavaScript 'window' object use the CefV8Context::GetGlobal()
method. V8 handles can only be accessed from the thread on which they are
created. A task runner for posting tasks on the associated thread can be
retrieved via the CefV8Context::GetTaskRunner() method.
| |
OnContextReleased |
Called immediately before the V8 context for a frame is released. No
references to the context should be kept after this method is called.
| |
OnFocusedNodeChanged |
Called when a new node in the the browser gets focus. The |node| value may
be empty if no specific node has gained focus. The node object passed to
this method represents a snapshot of the DOM at the time this method is
executed. DOM objects are only valid for the scope of this method. Do not
keep references to or attempt to access any DOM objects outside the scope
of this method.
| |
OnProcessMessageReceived |
Called when a new message is received from a different process. Return true
if the message was handled or false otherwise. Do not keep a reference to
or attempt to access the message outside of this callback.
| |
OnRenderThreadCreated |
Called after the render process main thread has been created.
| |
OnUncaughtException |
Called for global uncaught exceptions in a frame. Execution of this
callback is disabled by default. To enable set
CefSettings.uncaught_exception_stack_size > 0.
| |
OnWebKitInitialized |
Called after WebKit has been initialized.
| |
ToString | (Inherited from Object.) |
Properties
Name | Description | |
---|---|---|
SyncRoot |
See Also