Class ApiUnknowCommand
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
Context
Gets or sets the HTTP request context associated with this command.
public IHttpRequestContext Context { get; set; }
Property Value
HasValidToken
Gets or sets whether the provided token is valid.
public bool HasValidToken { get; set; }
Property Value
IsHandled
Gets or sets whether this command has been handled by a custom handler.
public bool IsHandled { get; set; }
Property Value
Item
Gets or sets the item identifier or parameter for the command.
public string Item { get; set; }
Property Value
RequestBody
Gets or sets the request body content as a string.
public string RequestBody { get; set; }
Property Value
Token
Gets or sets the authentication token provided with the request.
public string Token { get; set; }