Click or drag to resize

IDevToolsMessageObserverOnDevToolsMethodResult Method

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

Namespace: CefSharp.Callback
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
void OnDevToolsMethodResult(
	IBrowser browser,
	int messageId,
	bool success,
	Stream result
)

Parameters

browser  IBrowser
is the originating browser instance
messageId  Int32
is the id value that identifies the originating method call message
success  Boolean
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  Stream
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