Table of Contents

Class InspectRequestedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.Runtime
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Issued when object should be inspected (for example, as a result of inspect() command line API call).

public sealed record InspectRequestedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<InspectRequestedEventArgs>
Inheritance
EventArgs
InspectRequestedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

InspectRequestedEventArgs(RemoteObject, JsonElement, ExecutionContextId?)

Issued when object should be inspected (for example, as a result of inspect() command line API call).

public InspectRequestedEventArgs(RemoteObject Object, JsonElement Hints, ExecutionContextId? ExecutionContextId = null)

Parameters

Object RemoteObject
Hints JsonElement
ExecutionContextId ExecutionContextId

Identifier of the context where the call was made.

Properties

ExecutionContextId

Identifier of the context where the call was made.

public ExecutionContextId? ExecutionContextId { get; init; }

Property Value

ExecutionContextId

Hints

public JsonElement Hints { get; init; }

Property Value

JsonElement

Object

public RemoteObject Object { get; init; }

Property Value

RemoteObject