Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ActivityTrackPoint::ExcludedLocations Property

 

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

Namespace:   System.Workflow.Runtime.Tracking
Assembly:  System.Workflow.Runtime (in System.Workflow.Runtime.dll)

public:
property ActivityTrackingLocationCollection^ ExcludedLocations {
	ActivityTrackingLocationCollection^ get();
}

Property Value

Type: System.Workflow.Runtime.Tracking::ActivityTrackingLocationCollection^

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

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.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft