Click or drag to resize

IDevToolsMessageObserverOnDevToolsEvent Method

Version 94.4.20
Method that will be called on receipt of a DevTools protocol event.

Namespace:  CefSharp.Callback
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
void OnDevToolsEvent(
	IBrowser browser,
	string method,
	Stream parameters
)

Parameters

browser
Type: CefSharpIBrowser
is the originating browser instance
method
Type: SystemString
is the method value
parameters
Type: System.IOStream
is the UTF8-encoded JSON "params" dictionary value (which may be empty). This stream is only valid for the scope of this callback and should be copied if necessary. See the OnDevToolsMessage documentation for additional details on contents.
See Also