Table of Contents

Class TerminalRequest

Namespace
OneImlx.Terminal.Shared
Assembly
OneImlx.Terminal.Shared.dll

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 string

The unique identifier for the command item.

raw string

The raw command string to be processed.

Properties

Id

Gets the unique identifier for the command item.

[JsonPropertyName("id")]
public string Id { get; }

Property Value

string

IsError

Gets a value indicating whether the result is an Error.

[JsonPropertyName("is_error")]
public bool IsError { get; set; }

Property Value

bool

Raw

The raw command or a batch that needs to be processed.

[JsonPropertyName("raw")]
public string Raw { get; }

Property Value

string

Result

The result of the command or batch processing.

[JsonPropertyName("result")]
public object? Result { get; set; }

Property Value

object

Methods

Equals(TerminalRequest?)

public bool Equals(TerminalRequest? other)

Parameters

other TerminalRequest

Returns

bool

Equals(object?)

public override bool Equals(object? obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int

ToString()

public override string ToString()

Returns

string

Operators

operator ==(TerminalRequest?, TerminalRequest?)

public static bool operator ==(TerminalRequest? left, TerminalRequest? right)

Parameters

left TerminalRequest
right TerminalRequest

Returns

bool

operator !=(TerminalRequest?, TerminalRequest?)

public static bool operator !=(TerminalRequest? left, TerminalRequest? right)

Parameters

left TerminalRequest
right TerminalRequest

Returns

bool