Class DevToolsEventReceivedEventArgs
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
stringThe domain on which the event is to be raised.
eventName
stringThe name of the event to be raised.
eventData
JsonElementThe 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
EventData
Gets the data with which the event is to be raised.
public JsonElement EventData { get; }
Property Value
EventName
Gets the name of the event to be raised.
public string EventName { get; }