Class InspectRequestedEventArgs
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
-
EventArgsInspectRequestedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.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
ObjectRemoteObjectHintsJsonElementExecutionContextIdExecutionContextIdIdentifier 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
Hints
public JsonElement Hints { get; init; }
Property Value
Object
public RemoteObject Object { get; init; }