Click or drag to resize

DevToolsExtensions Class

Version 86.0.240
Extensions for accessing DevTools through IBrowserHost
Inheritance Hierarchy
SystemObject
  CefSharpDevToolsExtensions

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public static class DevToolsExtensions

The DevToolsExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberExecuteDevToolsMethod
Execute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected paramsAsJson dictionary contents. See the SendDevToolsMessage documentation for additional usage information.
Public methodStatic memberExecuteDevToolsMethodAsync(IBrowser, Int32, String, IDictionaryString, Object)
Execute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. ExecuteDevToolsMethod(IBrowserHost, Int32, String, JsonString) can only be called on the CEF UI Thread, this method can be called on any thread. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected parameters dictionary contents. See the SendDevToolsMessage documentation for additional usage information.
Public methodStatic memberExecuteDevToolsMethodAsync(IWebBrowser, Int32, String, IDictionaryString, Object)
Execute a method call over the DevTools protocol. This is a more structured version of SendDevToolsMessage. ExecuteDevToolsMethod(IBrowserHost, Int32, String, JsonString) can only be called on the CEF UI Thread, this method can be called on any thread. See the DevTools protocol documentation at https://chromedevtools.github.io/devtools-protocol/ for details of supported methods and the expected parameters dictionary contents. See the SendDevToolsMessage documentation for additional usage information.
Public methodStatic memberGetDevToolsClient(IBrowser)
Gets a new Instance of the DevTools client
Public methodStatic memberGetDevToolsClient(IWebBrowser)
Gets a new Instance of the DevTools client for the chromiumWebBrowser instance.
Top
See Also