WorkflowTrackingLocation 构造函数

定义

初始化 WorkflowTrackingLocation 类的新实例。

重载

名称 说明
WorkflowTrackingLocation()

初始化 WorkflowTrackingLocation 类的新实例。

WorkflowTrackingLocation(IList<TrackingWorkflowEvent>)

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

WorkflowTrackingLocation()

初始化 WorkflowTrackingLocation 类的新实例。

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

注解

未指定任何要匹配的工作流状态事件。 必须添加TrackingWorkflowEventEvents值才能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>

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

适用于