ActivityTrackingLocation.ExecutionStatusEvents 属性

定义

获取可为此位置匹配的活动状态事件的列表。Gets the list of activity status events that can be matched for this location.

public:
 property System::Collections::Generic::IList<System::Workflow::ComponentModel::ActivityExecutionStatus> ^ ExecutionStatusEvents { System::Collections::Generic::IList<System::Workflow::ComponentModel::ActivityExecutionStatus> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.ComponentModel.ActivityExecutionStatus> ExecutionStatusEvents { get; }
member this.ExecutionStatusEvents : System.Collections.Generic.IList<System.Workflow.ComponentModel.ActivityExecutionStatus>
Public ReadOnly Property ExecutionStatusEvents As IList(Of ActivityExecutionStatus)

属性值

IList<ActivityExecutionStatus>

一个 IList<T>,它包含一个或多个 ActivityExecutionStatus 值。A IList<T> that contains one or more of the ActivityExecutionStatus values. 默认为空列表。The default is an empty list.

注解

ExecutionStatusEvents 指定可为其匹配 ActivityTrackingLocation 的活动状态事件。ExecutionStatusEvents specifies the activity status events for which the ActivityTrackingLocation can be matched. 必须匹配 ActivityExecutionStatus 中的其中一个 ExecutionStatusEvents 值,并且 TrackingCondition 中的每个 Conditions 均必须为 true,才能使 ActivityTrackingLocation 匹配。One of the ActivityExecutionStatus values in ExecutionStatusEvents must be matched and every TrackingCondition in Conditions must be true for the ActivityTrackingLocation to be matched. 空列表指定没有要匹配的事件。An empty list specifies that no events are to be matched.

适用于