Interface IResult
表示一个有关命令的结果的信息。
public interface IResult
Properties
Error
获取在命令执行期间发生的异常信息,如果没有异常则为 null
。
CommandError? Error { get; }
Property Value
ErrorReason
获取在命令执行期间发生的异常的原因,如果没有异常则为 null
。
string? ErrorReason { get; }
Property Value
IsSuccess
获取命令执行的结果是否为成功。
bool IsSuccess { get; }