IDevToolsMessageObserverOnDevToolsMethodResult Method |
Version 101.0.180
Method that will be called after attempted execution of a DevTools protocol
Namespace:
CefSharp.Callback
Assembly:
CefSharp (in CefSharp.dll) Version: 101.0.180.0 (101.0.180.0)
Syntax void 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