Class TerminalRequest
A terminal request with a unique identifier, raw input, result, and error status.
public sealed class TerminalRequest : IEquatable<TerminalRequest?>
- Inheritance
-
TerminalRequest
- Implements
- Inherited Members
Constructors
TerminalRequest(string, string)
Initializes a new instance of the TerminalRequest class.
[JsonConstructor]
public TerminalRequest(string id, string raw)
Parameters
id
stringThe unique identifier for the command item.
raw
stringThe raw command string to be processed.
Properties
Id
Gets the unique identifier for the command item.
[JsonPropertyName("id")]
public string Id { get; }
Property Value
IsError
Gets a value indicating whether the result is an Error.
[JsonPropertyName("is_error")]
public bool IsError { get; set; }
Property Value
Raw
The raw command or a batch that needs to be processed.
[JsonPropertyName("raw")]
public string Raw { get; }
Property Value
Result
The result of the command or batch processing.
[JsonPropertyName("result")]
public object? Result { get; set; }
Property Value
Methods
Equals(TerminalRequest?)
public bool Equals(TerminalRequest? other)
Parameters
other
TerminalRequest
Returns
Equals(object?)
public override bool Equals(object? obj)
Parameters
obj
object
Returns
GetHashCode()
public override int GetHashCode()
Returns
ToString()
public override string ToString()
Returns
Operators
operator ==(TerminalRequest?, TerminalRequest?)
public static bool operator ==(TerminalRequest? left, TerminalRequest? right)
Parameters
left
TerminalRequestright
TerminalRequest
Returns
operator !=(TerminalRequest?, TerminalRequest?)
public static bool operator !=(TerminalRequest? left, TerminalRequest? right)
Parameters
left
TerminalRequestright
TerminalRequest