Click or drag to resize

BrowserProcessHandler Class

Version 94.4.20
Inherit from this class to handle events related to browser process callbacks. The methods of this class will be called on the CEF UI thread unless otherwise indicated. .
Inheritance Hierarchy
SystemObject
  CefSharp.HandlerBrowserProcessHandler

Namespace:  CefSharp.Handler
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public class BrowserProcessHandler : IBrowserProcessHandler, 
	IDisposable

The BrowserProcessHandler type exposes the following members.

Constructors
  NameDescription
Public methodBrowserProcessHandler
Initializes a new instance of the BrowserProcessHandler class
Top
Properties
  NameDescription
Public propertyIsDisposed
IsDisposed
Top
Methods
  NameDescription
Protected methodDispose
Releases the unmanaged resources used by the BrowserProcessHandler and optionally releases the managed resources
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnContextInitialized
Called on the CEF UI thread immediately after the CEF context has been initialized. You can now access the Global RequestContext through Cef.GetGlobalRequestContext() - this is the first place you can set Preferences (e.g. proxy settings, spell check dictionaries).
Protected methodOnScheduleMessagePumpWork
Called from any thread when work has been scheduled for the browser process main (UI) thread. This callback is used in combination with CefSettings. ExternalMessagePump and Cef.DoMessageLoopWork() in cases where the CEF message loop must be integrated into an existing application message loop (see additional comments and warnings on Cef.DoMessageLoopWork). This callback should schedule a Cef.DoMessageLoopWork() call to happen on the main (UI) thread.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also