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