次の方法で共有


NextStep コンストラクター

定義

オーバーロード

NextStep()

既定では、次のアクティブで未完了のステップに進みます。

NextStep(StepDirection)

指定した方向に移動します。

NextStep(IEnumerable<String>)

次に移動するフィールドをユーザーに確認します。

NextStep()

ソース:
IField.cs

既定では、次のアクティブで未完了のステップに進みます。

public NextStep();
Public Sub New ()

適用対象

NextStep(StepDirection)

ソース:
IField.cs

指定した方向に移動します。

public NextStep(Microsoft.Bot.Builder.FormFlow.Advanced.StepDirection direction);
new Microsoft.Bot.Builder.FormFlow.Advanced.NextStep : Microsoft.Bot.Builder.FormFlow.Advanced.StepDirection -> Microsoft.Bot.Builder.FormFlow.Advanced.NextStep
Public Sub New (direction As StepDirection)

パラメーター

direction
StepDirection

次に実行する手順。

適用対象

NextStep(IEnumerable<String>)

ソース:
IField.cs

次に移動するフィールドをユーザーに確認します。

public NextStep(System.Collections.Generic.IEnumerable<string> names);
new Microsoft.Bot.Builder.FormFlow.Advanced.NextStep : seq<string> -> Microsoft.Bot.Builder.FormFlow.Advanced.NextStep
Public Sub New (names As IEnumerable(Of String))

パラメーター

names
IEnumerable<String>

可能な次のステップの列挙。

適用対象