WorkflowTrackingRecord.EventArgs 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个 EventArgs,其中包含与某些类型的工作流状态事件关联的附加数据。
public:
virtual property EventArgs ^ EventArgs { EventArgs ^ get(); void set(EventArgs ^ value); };
public override EventArgs EventArgs { get; set; }
member this.EventArgs : EventArgs with get, set
Public Overrides Property EventArgs As EventArgs
属性值
TrackingWorkflowSuspendedEventArgs、TrackingWorkflowTerminatedEventArgs、TrackingWorkflowExceptionEventArgs,或空引用(在 Visual Basic 中为 Nothing
)。
注解
对于大多数工作流状态事件,EventArgs 都是空引用 (Nothing
);但是,对于某些类型的工作流状态事件,运行时跟踪基础结构将使用 EventArgs 返回与工作流状态事件有关的附加数据。 下表列出了 TrackingWorkflowEvent 值,这些值与在每个工作流状态事件的 EventArgs 中返回的这些特殊工作流状态事件和对象类型相对应。
TrackingWorkflowEvent 值 | EventArgs 对象 |
---|---|
Exception | TrackingWorkflowExceptionEventArgs |
Suspended | TrackingWorkflowSuspendedEventArgs |
Terminated | TrackingWorkflowTerminatedEventArgs |
该属性由运行时跟踪基础结构设置。