Share via


StateMachine<TReturn>.StateResult Constructors

Definition

Overloads

StateMachine<TReturn>.StateResult(StateMachine<TReturn>.State)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the StateMachine<TReturn>.StateResult class.

StateMachine<TReturn>.StateResult(TReturn, StateMachine<TReturn>.State)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the StateMachine<TReturn>.StateResult class.

StateMachine<TReturn>.StateResult(StateMachine<TReturn>.State)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the StateMachine<TReturn>.StateResult class.

public StateResult (System.Web.Razor.StateMachine<TReturn>.State next);
new System.Web.Razor.StateMachine<'Return>.StateResult : System.Web.Razor.StateMachine<'Return>.State -> System.Web.Razor.StateMachine<'Return>.StateResult
Public Sub New (next As StateMachine(Of TReturn).State)

Parameters

next
StateMachine<TReturn>.State

The next output.

Applies to

StateMachine<TReturn>.StateResult(TReturn, StateMachine<TReturn>.State)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the StateMachine<TReturn>.StateResult class.

public StateResult (TReturn output, System.Web.Razor.StateMachine<TReturn>.State next);
new System.Web.Razor.StateMachine<'Return>.StateResult : 'Return * System.Web.Razor.StateMachine<'Return>.State -> System.Web.Razor.StateMachine<'Return>.StateResult
Public Sub New (output As TReturn, next As StateMachine(Of TReturn).State)

Parameters

output
TReturn

The output.

next
StateMachine<TReturn>.State

The next state.

Applies to