StateMachine<TReturn>.Transition 方法

定义

重载

Transition(StateMachine<TReturn>.State)

此类型/成员支持.NET Framework基础结构,不应直接从代码使用。指示状态的新转换。

Transition(TReturn, StateMachine<TReturn>.State)

此类型/成员支持.NET Framework基础结构,不应直接从代码使用。指示具有指定输出的状态的新转换。

Transition(StateMachine<TReturn>.State)

此类型/成员支持.NET Framework基础结构,不应直接从代码使用。指示状态的新转换。

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

参数

newState
StateMachine<TReturn>.State

新状态。

返回

状态的新过渡。

适用于

Transition(TReturn, StateMachine<TReturn>.State)

此类型/成员支持.NET Framework基础结构,不应直接从代码使用。指示具有指定输出的状态的新转换。

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

参数

output
TReturn

输出。

newState
StateMachine<TReturn>.State

新状态。

返回

具有指定输出的状态的新过渡。

适用于