Class SendCommandResult
Result of a CDP send command operation.
public sealed record SendCommandResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<SendCommandResult>
- Inheritance
-
EmptyResultSendCommandResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
SendCommandResult(JsonElement, string)
Result of a CDP send command operation.
public SendCommandResult(JsonElement Result, string Session)
Parameters
ResultJsonElementThe raw JSON result from the CDP command.
SessionstringThe CDP session identifier the command was executed on.
Properties
Result
The raw JSON result from the CDP command.
public JsonElement Result { get; init; }
Property Value
Session
The CDP session identifier the command was executed on.
public string Session { get; init; }