WorkflowTrackingLocation 构造函数

定义

初始化 WorkflowTrackingLocation 类的新实例。

重载

WorkflowTrackingLocation()

初始化 WorkflowTrackingLocation 类的新实例。

WorkflowTrackingLocation(IList<TrackingWorkflowEvent>)

初始化 WorkflowTrackingLocation 类的新实例,该类与指定的跟踪工作流事件匹配。

WorkflowTrackingLocation()

初始化 WorkflowTrackingLocation 类的新实例。

public:
 WorkflowTrackingLocation();
public WorkflowTrackingLocation ();
Public Sub New ()

注解

未指定要匹配的工作流状态事件。 必须将 TrackingWorkflowEvent 值添加到 Events 才能使 WorkflowTrackingLocation 与任何工作流状态事件匹配。

适用于

WorkflowTrackingLocation(IList<TrackingWorkflowEvent>)

初始化 WorkflowTrackingLocation 类的新实例,该类与指定的跟踪工作流事件匹配。

public:
 WorkflowTrackingLocation(System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::TrackingWorkflowEvent> ^ events);
public WorkflowTrackingLocation (System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingWorkflowEvent> events);
new System.Workflow.Runtime.Tracking.WorkflowTrackingLocation : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingWorkflowEvent> -> System.Workflow.Runtime.Tracking.WorkflowTrackingLocation
Public Sub New (events As IList(Of TrackingWorkflowEvent))

参数

events
IList<TrackingWorkflowEvent>

要匹配的跟踪工作流事件的列表。

适用于