IBrowserProcessHandler Interface |
Namespace: CefSharp
The IBrowserProcessHandler type exposes the following members.
Name | Description | |
---|---|---|
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
OnContextInitialized |
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).
| |
OnScheduleMessagePumpWork |
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.
|