DMQueryTask.ExecutionValue 属性

定义

获取用户定义对象。 此字段为只读。

public:
 virtual property System::Object ^ ExecutionValue { System::Object ^ get(); };
public override object ExecutionValue { get; }
member this.ExecutionValue : obj
Public Overrides ReadOnly Property ExecutionValue As Object

属性值

一个用户定义对象。

注解

ExecutionValue 属性是一个只读对象属性,它提供任务除了发布消息或返回 DTSExecResult 返回值外,还可以公开有关其执行结果的信息。 For example, if a task deletes rows from a table as part of its Execute method, it might return the number of rows deleted as the ExecutionValue. 然后,任务的客户端可以使用此值在任务之间建立优先约束。

任务会替代属性的基本 ExecutionValue 实现,并覆盖任务在其方法期间 Execute 设置的值。

适用于