NextStep 构造函数

定义

重载

NextStep()

默认情况下,转到下一个活动且未完成的步骤。

NextStep(StepDirection)

按指定方向移动。

NextStep(IEnumerable<String>)

询问用户下一步要移动到哪个字段。

NextStep()

Source:
IField.cs

默认情况下,转到下一个活动且未完成的步骤。

public NextStep();
Public Sub New ()

适用于

NextStep(StepDirection)

Source:
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>)

Source:
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>

枚举可能的后续步骤。

适用于