IDevToolsMessageObserverOnDevToolsEvent Method |
Version 101.0.180
Method that will be called on receipt of a DevTools protocol event.
Namespace:
CefSharp.Callback
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax void OnDevToolsEvent(
IBrowser browser,
string method,
Stream parameters
)
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