SqlTrackingWorkflowInstance.WorkflowEvents 属性

定义

获取工作流跟踪记录的列表,这些记录已由运行时跟踪基础结构为此工作流实例发送到 SqlTrackingService 数据库。

public:
 property System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::WorkflowTrackingRecord ^> ^ WorkflowEvents { System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::WorkflowTrackingRecord ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.WorkflowTrackingRecord> WorkflowEvents { get; }
member this.WorkflowEvents : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.WorkflowTrackingRecord>
Public ReadOnly Property WorkflowEvents As IList(Of WorkflowTrackingRecord)

属性值

IList<WorkflowTrackingRecord>

运行时跟踪基础结构为此工作流实例发送到跟踪数据库的 WorkflowTrackingRecord 对象的列表。

注解

如果 AutoRefreshtrueWorkflowEvents 将包含到目前为止为此工作流实例发送的所有工作流跟踪记录;如果 AutoRefreshfalseWorkflowEvents 将包含到上一次 Refresh 之前为止发送的工作流跟踪记录。

WorkflowEvents 包含运行时跟踪基础结构为此工作流实例发送到数据库的工作流跟踪记录。 仅当工作流实例发出与在实例的 WorkflowTrackPoint 中指定的 TrackingProfile 相对应的工作流状态事件时,工作流运行时引擎跟踪基础结构才会发送工作流跟踪记录。

适用于