StateMachineWorkflowActivity.PreviousStateName 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 the name of the previously executed StateActivity.
public:
property System::String ^ PreviousStateName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string PreviousStateName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.PreviousStateName : string
Public ReadOnly Property PreviousStateName As String
Property Value
The name of the previous StateActivity.
- Attributes
Remarks
The PreviousStateName property only returns the name of the previous state when accessed from within the workflow, for example, from a code handler in a CodeActivity. The property does not work from host code because the host only has access to a copy of the workflow definition, never to the live instance tree.
For more information about how to determine the previous state from the host, see the StateHistory property of the StateMachineWorkflowInstance class.