Table of Contents

Class ApiUnknowCommand

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents an unrecognized API command received by the server. Serves as a fallback handler for unknown commands that can be processed by custom handlers.

public class ApiUnknowCommand
Inheritance
ApiUnknowCommand
Inherited Members

Constructors

ApiUnknowCommand()

public ApiUnknowCommand()

Properties

Command

Gets or sets the command name.

public string Command { get; set; }

Property Value

string

Context

Gets or sets the HTTP request context associated with this command.

public IHttpRequestContext Context { get; set; }

Property Value

IHttpRequestContext

HasValidToken

Gets or sets whether the provided token is valid.

public bool HasValidToken { get; set; }

Property Value

bool

IsHandled

Gets or sets whether this command has been handled by a custom handler.

public bool IsHandled { get; set; }

Property Value

bool

Item

Gets or sets the item identifier or parameter for the command.

public string Item { get; set; }

Property Value

string

RequestBody

Gets or sets the request body content as a string.

public string RequestBody { get; set; }

Property Value

string

Token

Gets or sets the authentication token provided with the request.

public string Token { get; set; }

Property Value

string