Class DevToolsEventData
Class containing the data used for an event raised by the DevTools session.
public class DevToolsEventData- Inheritance
- 
      
      DevToolsEventData
- Inherited Members
Constructors
DevToolsEventData(Type, Action<object?>)
Initializes a new instance of the DevToolsEventData class.
public DevToolsEventData(Type eventArgsType, Action<object?> invoker)Parameters
- eventArgsTypeType
- The type of the event args for the event to be raised. 
- invokerAction<object>
- The method that will be used to invoke the event. 
Exceptions
- ArgumentNullException
- If - eventArgsTypeor- invokeris null.
Properties
EventArgsType
Gets the type of the event args object for the event.
public Type EventArgsType { get; }Property Value
EventInvoker
The method to called to raise the event.
public Action<object?> EventInvoker { get; }