Click or drag to resize

IDevToolsMessageObserverOnDevToolsEvent Method

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

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

Parameters

browser  IBrowser
is the originating browser instance
method  String
is the method value
parameters  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