Table of Contents

Class DevToolsEventReceivedEventArgs

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

Event data used when receiving events from the DevTools session.

public class DevToolsEventReceivedEventArgs : EventArgs
Inheritance
DevToolsEventReceivedEventArgs
Inherited Members

Constructors

DevToolsEventReceivedEventArgs(string, string, JsonElement)

Initializes a new instance of the DevToolsEventReceivedEventArgs class.

public DevToolsEventReceivedEventArgs(string domainName, string eventName, JsonElement eventData)

Parameters

domainName string

The domain on which the event is to be raised.

eventName string

The name of the event to be raised.

eventData JsonElement

The data for the event to be raised.

Properties

DomainName

Gets the domain on which the event is to be raised.

public string DomainName { get; }

Property Value

string

EventData

Gets the data with which the event is to be raised.

public JsonElement EventData { get; }

Property Value

JsonElement

EventName

Gets the name of the event to be raised.

public string EventName { get; }

Property Value

string