Table of Contents

Class ExceptionThrownEventArgs

Namespace
OpenQA.Selenium.DevTools
Assembly
WebDriver.dll

Provides data for events relating to JavaScript exception handling.

public class ExceptionThrownEventArgs : EventArgs
Inheritance
ExceptionThrownEventArgs
Inherited Members

Constructors

ExceptionThrownEventArgs(DateTime, string)

Initializes new instance of the ExceptionThrownEventArgs type.

public ExceptionThrownEventArgs(DateTime timestamp, string message)

Parameters

timestamp DateTime

The time stamp of the exception.

message string

The text of the exception.

Properties

Message

Gets the text of the exception.

public string Message { get; }

Property Value

string

Timestamp

Gets the time stamp of the exception.

public DateTime Timestamp { get; }

Property Value

DateTime