Click or drag to resize

IDevToolsMessageObserver.OnDevToolsEvent Method

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

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

Parameters

browser
Type: CefSharp.IBrowser
is the originating browser instance
method
Type: System.String
is the method value
parameters
Type: System.IO.Stream
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