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
domainNamestringThe domain on which the event is to be raised.
eventNamestringThe name of the event to be raised.
eventDataJsonElementThe 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; }