SqlTrackingWorkflowInstance.ActivityEvents Property

Definition

Gets the list of activity tracking records that have been sent for this workflow instance to a SqlTrackingService database by the run-time tracking infrastructure.

public:
 property System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::ActivityTrackingRecord ^> ^ ActivityEvents { System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::ActivityTrackingRecord ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.ActivityTrackingRecord> ActivityEvents { get; }
member this.ActivityEvents : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.ActivityTrackingRecord>
Public ReadOnly Property ActivityEvents As IList(Of ActivityTrackingRecord)

Property Value

The list of ActivityTrackingRecord objects sent for this workflow instance to the tracking database by the run-time tracking infrastructure.

Remarks

If AutoRefresh is true, ActivityEvents contains all activity tracking records sent for this workflow instance up to the current time; if AutoRefresh is false, ActivityEvents contains the activity tracking records sent up until the last Refresh.

ActivityEvents contains activity tracking records sent to a database by the run-time tracking infrastructure for this workflow instance. Activity tracking records are sent by the workflow run-time engine tracking infrastructure only when the workflow instance emits an activity status event that corresponds to an ActivityTrackPoint specified in the TrackingProfile for the instance.

Applies to