ActivityTrackPoint.ExcludedLocations 属性

定义

获取运行时跟踪基础结构应从跟踪点中排除的位置的集合。

public:
 property System::Workflow::Runtime::Tracking::ActivityTrackingLocationCollection ^ ExcludedLocations { System::Workflow::Runtime::Tracking::ActivityTrackingLocationCollection ^ get(); };
public System.Workflow.Runtime.Tracking.ActivityTrackingLocationCollection ExcludedLocations { get; }
member this.ExcludedLocations : System.Workflow.Runtime.Tracking.ActivityTrackingLocationCollection
Public ReadOnly Property ExcludedLocations As ActivityTrackingLocationCollection

属性值

ActivityTrackingLocationCollection

一个 ActivityTrackingLocationCollection,它指定要从跟踪点中排除的位置。 默认值为空集合。

注解

如果 ActivityTrackingLocation 中的任何 ExcludedLocations 对于特定活动状态事件匹配,则跟踪点将不会匹配,并且不会将 ActivityTrackingRecord 发送到跟踪服务。 如果 ExcludedLocations 为空,则没有排除的位置。

您可以使用 ExcludedLocations 从运行时跟踪基础结构跟踪的位置中明确排除某些位置。 例如,如果要跟踪除 CodeActivity 属性为“Code1”的 CodeActivity 活动之外的所有 Name 活动,你可以定义与所有 ActivityTrackingLocation 活动匹配的 CodeActivity,并将其添加到 MatchingLocations。 然后,您可以定义另一个与 ActivityTrackingLocation 属性设置为“Code1”的 CodeActivity 活动匹配的 Name,并将其添加到 ExcludedLocations。 跟踪点随后将匹配除“Code1”活动之外的所有 CodeActivity 活动。

适用于