UserTrackPoint.Extracts Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection that specifies data to be extracted from the workflow instance and sent to the tracking service.
public:
property System::Workflow::Runtime::Tracking::ExtractCollection ^ Extracts { System::Workflow::Runtime::Tracking::ExtractCollection ^ get(); };
public System.Workflow.Runtime.Tracking.ExtractCollection Extracts { get; }
member this.Extracts : System.Workflow.Runtime.Tracking.ExtractCollection
Public ReadOnly Property Extracts As ExtractCollection
Property Value
An ExtractCollection that specifies data to be extracted and sent to the tracking service. The default is an empty collection.
Remarks
When the track point is matched, the runtime tracking infrastructure sends a UserTrackingRecord to the tracking service. The user data is returned in UserTrackingRecord.UserData. The runtime tracking infrastructure can also extract data specified in Extracts from the workflow instance and send this in the UserTrackingRecord. The extracted data is encapsulated in TrackingDataItem records and returned in UserTrackingRecord.Body.
You can add ActivityDataTrackingExtract objects to Extracts to specify member data that should be extracted from the activity associated with the user event and you can add WorkflowDataTrackingExtract objects to Extracts to specify member data that should be extracted from the root activity of the workflow.