ActivityTrackPoint.ExcludedLocations Property

Definition

Gets the collection of locations that should be excluded from the track point by the runtime tracking infrastructure.

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

Property Value

An ActivityTrackingLocationCollection that specifies locations to be excluded from the track point. The default is an empty collection.

Remarks

If any ActivityTrackingLocation in ExcludedLocations is matched for a particular activity status event, the track point will not be matched and no ActivityTrackingRecord will be sent to the tracking service. If ExcludedLocations is empty, there are no excluded locations.

You can use ExcludedLocations to specifically exclude locations from being tracked by the runtime tracking infrastructure. For example, if you want to track all CodeActivity activities except the CodeActivity activity with an Name property of "Code1", you can define an ActivityTrackingLocation that matches all CodeActivity activities and add it to MatchingLocations. Then you can define another ActivityTrackingLocation that matches CodeActivity activities with an Name property set to "Code1" and add it to ExcludedLocations. The track point will then match all CodeActivity activities except the "Code1" activity.

Applies to