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
eventArgsType
TypeThe type of the event args for the event to be raised.
invoker
Action<object>The method that will be used to invoke the event.
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; }