Table of Contents

Class DevToolsEventData

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

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 Type

The 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

Type

EventInvoker

The method to called to raise the event.

public Action<object> EventInvoker { get; }

Property Value

Action<object>