IDevToolsMessageObserverOnDevToolsEvent Method  | 
Version 104.4.240 
            Method that will be called on receipt of a DevTools protocol event.
            
 
    Namespace: 
   CefSharp.Callback
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxvoid 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