IDevToolsMessageObserverOnDevToolsMethodResult Method  | 
Version 106.0.290 
            Method that will be called after attempted execution of a DevTools protocol
            
 
    Namespace: 
   CefSharp.Callback
    Assembly:
   CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntaxvoid OnDevToolsMethodResult(
	IBrowser browser,
	int messageId,
	bool success,
	Stream result
)
void OnDevToolsMethodResult(
	IBrowser^ browser, 
	int messageId, 
	bool success, 
	Stream^ result
)
Parameters
- browser
 - Type: CefSharpIBrowser
is the originating browser instance - messageId
 - Type: SystemInt32
is the id value that identifies the originating method call message - success
 - Type: SystemBoolean
If the method succeeded success will be true and result will be the
            UTF8-encoded JSON "result" dictionary value (which may be empty).
            If the method failed success will be false and result will be the UTF8-encoded
            JSON "error" dictionary value.
             - result
 - Type: System.IOStream
The 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