StateMachineWorkflowInstance.StateHistory Property

Definition

Gets a collection of state activities that the state machine workflow instance has transitioned through.

public:
 property System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ StateHistory { System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<string> StateHistory { get; }
member this.StateHistory : System.Collections.ObjectModel.ReadOnlyCollection<string>
Public ReadOnly Property StateHistory As ReadOnlyCollection(Of String)

Property Value

A collection of transitions that the StateActivity has made.

Remarks

This property only returns the state history if the SqlTrackingService is used. An InvalidOperationException occurs if the SqlTrackingService is not installed. If there is no state history for a newly created instance, state history is created without the instance being started.

Applies to