Interface ICommandResult
Represents result of any command execution or check.
Namespace: TehGM.Wolfringo.Commands
Assembly: Wolfringo.Commands.dll
Syntax
public interface ICommandResult
Properties
| Improve this Doc View SourceIsSuccess
Whether execution or check was successful.
Declaration
[Obsolete("Use Status property instead.")]
bool IsSuccess { get; }
Property Value
Type | Description |
---|---|
Boolean |
Remarks
This property has been obsoleted in favour of Status and will be removed in future updates.
Status
Status telling commands service how to progress with the execution.
Declaration
CommandResultStatus Status { get; }
Property Value
Type | Description |
---|---|
CommandResultStatus |