StateMachineWorkflowInstance.StateHistory 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 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.