Click or drag to resize

IDevToolsMessageObserverOnDevToolsMethodResult Method

Version 94.4.20
Method that will be called after attempted execution of a DevTools protocol

Namespace:  CefSharp.Callback
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
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