StateMachine<TReturn>.Transition Method
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.
Overloads
Transition(StateMachine<TReturn>.State) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state. |
Transition(TReturn, StateMachine<TReturn>.State) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state with the specified output. |
Transition(StateMachine<TReturn>.State)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state.
protected System.Web.Razor.StateMachine<TReturn>.StateResult Transition(System.Web.Razor.StateMachine<TReturn>.State newState);
member this.Transition : System.Web.Razor.StateMachine<'Return>.State -> System.Web.Razor.StateMachine<'Return>.StateResult
Protected Function Transition (newState As StateMachine(Of TReturn).State) As StateMachine(Of TReturn).StateResult
Parameters
- newState
- StateMachine<TReturn>.State
The new state.
Returns
The new transition of the state.
Applies to
Transition(TReturn, StateMachine<TReturn>.State)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the new transition of the state with the specified output.
protected System.Web.Razor.StateMachine<TReturn>.StateResult Transition(TReturn output, System.Web.Razor.StateMachine<TReturn>.State newState);
member this.Transition : 'Return * System.Web.Razor.StateMachine<'Return>.State -> System.Web.Razor.StateMachine<'Return>.StateResult
Protected Function Transition (output As TReturn, newState As StateMachine(Of TReturn).State) As StateMachine(Of TReturn).StateResult
Parameters
- output
- TReturn
The output.
- newState
- StateMachine<TReturn>.State
The new state.
Returns
The new transition of the state with the specified output.