[]
        
(Showing Draft Content)

GrapeCity.Forguncy.Commands.ExecuteResult

类 ExecuteResult

命令的执行结果。

继承
object
ExecuteResult
命名空间: GrapeCity.Forguncy.Commands
程序集: Forguncy.Commands.dll
语法
public class ExecuteResult

构造函数

ExecuteResult()

命令的执行结果。

声明
public ExecuteResult()

属性

AllowWriteResultToResponse

是否允许将命令执行结果写入响应信息。

声明
public bool AllowWriteResultToResponse { get; set; }
属性值
类型 描述
bool

ErrCode

返回码。

声明
public int ErrCode { get; set; }
属性值
类型 描述
int

Log

服务端命令的执行日志。

声明
public string Log { get; set; }
属性值
类型 描述
string

Message

返回信息。

声明
public string Message { get; set; }
属性值
类型 描述
string

ProcessControl

执行该命令后的流程控制信息。

声明
public ProcessControl ProcessControl { get; set; }
属性值
类型 描述
ProcessControl

ReturnValues

服务端命令的自定义返回值

声明
public Dictionary<string, object> ReturnValues { get; }
属性值
类型 描述
System.Collections.Generic.Dictionary<TKey, TValue><string, object>