UserTrackPoint.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::UserTrackingLocationCollection ^ ExcludedLocations { System::Workflow::Runtime::Tracking::UserTrackingLocationCollection ^ get(); };
public System.Workflow.Runtime.Tracking.UserTrackingLocationCollection ExcludedLocations { get; }
member this.ExcludedLocations : System.Workflow.Runtime.Tracking.UserTrackingLocationCollection
Public ReadOnly Property ExcludedLocations As UserTrackingLocationCollection

Property Value

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

Remarks

If any of the UserTrackingLocation objects in ExcludedLocations is matched for a particular user event, the track point will not be matched and no UserTrackingRecord will be sent to the tracking service. If ExcludedLocations is empty, there are no excluded locations.

You can use ExcludedLocations to exclude specific locations from being tracked by the runtime tracking infrastructure. For example, you can exclude a subset of locations that are specified in MatchingLocations in order to more precisely refine the locations that should be tracked by the track point.

Applies to