ActivityTrackPoint.Extracts Property

Definition

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 the data to be extracted and sent to the tracking service. The default is an empty collection.

Remarks

When a track point is matched, the runtime tracking infrastructure can extract data from the workflow instance. The runtime tracking infrastructure encapsulates the extracted data in TrackingDataItem objects that it puts in the Body of the ActivityTrackingRecord that it sends to the tracking service. If Extracts is empty, no data will be extracted.

You can add ActivityDataTrackingExtract objects to Extracts to specify member data that should be extracted from the activity associated with this track point, and you can add WorkflowDataTrackingExtract objects to Extracts to specify member data that should be extracted from the activity of the workflow.

Applies to