DevToolsClient Class |
Namespace: CefSharp.DevTools
The DevToolsClient type exposes the following members.
Name | Description | |
---|---|---|
DevToolsClient |
DevToolsClient
|
Name | Description | |
---|---|---|
Accessibility |
Accessibility
| |
Animation |
Animation
| |
Audits |
Audits domain allows investigation of page violations and possible improvements.
| |
BackgroundService |
Defines events for background web platform features.
| |
Browser |
The Browser domain defines methods and events for browser managing.
| |
CacheStorage |
CacheStorage
| |
CaptureSyncContext |
Capture the current SynchronizationContext so
continuation executes on the original calling thread. If
Current is null for
ExecuteDevToolsMethodAsync(String, IDictionaryString, Object)
then the continuation will be run on the CEF UI Thread (by default
this is not the same as the WPF/WinForms UI Thread).
| |
Cast |
A domain for interacting with Cast, Presentation API, and Remote Playback API
functionalities.
| |
CSS |
This domain exposes CSS read/write operations. All CSS objects (stylesheets, rules, and styles)
have an associated `id` used in subsequent operations on the related object. Each object type has
a specific `id` structure, and those are not interchangeable between objects of different kinds.
CSS objects can be loaded using the `get*ForNode()` calls (which accept a DOM node id). A client
can also keep track of stylesheets via the `styleSheetAdded`/`styleSheetRemoved` events and
subsequently load the required stylesheet contents using the `getStyleSheet[Text]()` methods.
| |
Database |
Database
| |
Debugger |
Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing
breakpoints, stepping through execution, exploring stack traces, etc.
| |
DeviceOrientation |
DeviceOrientation
| |
DOM |
This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object
that has an `id`. This `id` can be used to get additional information on the Node, resolve it into
the JavaScript object wrapper, etc. It is important that client receives DOM events only for the
nodes that are known to the client. Backend keeps track of the nodes that were sent to the client
and never sends the same node twice. It is client's responsibility to collect information about
the nodes that were sent to the client.<p>Note that `iframe` owner elements will return
corresponding document elements as their child nodes.</p>
| |
DOMDebugger |
DOM debugging allows setting breakpoints on particular DOM operations and events. JavaScript
execution will stop on these operations as if there was a regular breakpoint set.
| |
DOMSnapshot |
This domain facilitates obtaining document snapshots with DOM, layout, and style information.
| |
DOMStorage |
Query and modify DOM storage.
| |
Emulation |
This domain emulates different environments for the page.
| |
EventBreakpoints |
EventBreakpoints permits setting breakpoints on particular operations and
events in targets that run JavaScript but do not have a DOM.
JavaScript execution will stop on these operations as if there was a regular
breakpoint set.
| |
Fetch |
A domain for letting clients substitute browser's network layer with client code.
| |
HeadlessExperimental |
This domain provides experimental commands only supported in headless mode.
| |
HeapProfiler |
HeapProfiler
| |
IndexedDB |
IndexedDB
| |
Input |
Input
| |
Inspector |
Inspector
| |
IO |
Input/Output operations for streams produced by DevTools.
| |
LayerTree |
LayerTree
| |
Log |
Provides access to log entries.
| |
Media |
This domain allows detailed inspection of media elements
| |
Memory |
Memory
| |
Network |
Network domain allows tracking network activities of the page. It exposes information about http,
file, data and other requests and responses, their headers, bodies, timing, etc.
| |
Overlay |
This domain provides various functionality related to drawing atop the inspected page.
| |
Page |
Actions and events related to the inspected page belong to the page domain.
| |
Performance |
Performance
| |
PerformanceTimeline |
Reporting of performance timeline events, as specified in
https://w3c.github.io/performance-timeline/#dom-performanceobserver.
| |
Profiler |
Profiler
| |
Runtime |
Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects.
Evaluation results are returned as mirror object that expose object type, string representation
and unique identifier that can be used for further object reference. Original objects are
maintained in memory unless they are either explicitly released or are released along with the
other objects in their object group.
| |
Security |
Security
| |
ServiceWorker |
ServiceWorker
| |
Storage |
Storage
| |
SyncContext |
When not null provided SynchronizationContext
will be used to run the contination. Defaults to null
Setting this property will change CaptureSyncContext
to false.
| |
SystemInfo |
The SystemInfo domain defines methods and events for querying low-level system information.
| |
Target |
Supports additional targets discovery and allows to attach to them.
| |
Tethering |
The Tethering domain defines methods and events for browser port binding.
| |
Tracing |
Tracing
| |
WebAudio |
This domain allows inspection of Web Audio API.
https://webaudio.github.io/web-audio-api/
| |
WebAuthn |
This domain allows configuring virtual authenticators to test the WebAuthn
API.
|
Name | Description | |
---|---|---|
AddEventHandlerT |
Add event handler for a DevTools protocol event. Events by default are disabled and need to be
enabled on a per domain basis, e.g. Sending Network.enable (or calling EnableAsync(NullableInt32, NullableInt32, NullableInt32))
to enable network related events.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
ExecuteDevToolsMethodAsync(String, IDictionaryString, Object) |
Execute a method call over the DevTools protocol. 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.
| |
ExecuteDevToolsMethodAsyncT(String, IDictionaryString, Object) |
Execute a method call over the DevTools protocol. 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.
| |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
RemoveEventHandlerT |
Remove event handler for a DevTools protocol event.
| |
SetDevToolsObserverRegistration |
Store a reference to the IRegistration that's returned when
you register an observer.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
DevToolsEvent |
Will be called on receipt of a DevTools protocol event. Events by default are disabled and need to be
enabled on a per domain basis, e.g. Sending Network.enable (or calling EnableAsync(NullableInt32, NullableInt32, NullableInt32))
to enable network related events.
| |
DevToolsEventError |
Will be called when an error occurs when attempting to raise DevToolsEvent |