Share via


NextStep Constructors

Definition

Overloads

NextStep()

By default move on to the next active, uncompleted step.

NextStep(StepDirection)

Move as specified in direction.

NextStep(IEnumerable<String>)

Ask the user which of the fields to move to next.

NextStep()

Source:
IField.cs

By default move on to the next active, uncompleted step.

public NextStep ();
Public Sub New ()

Applies to

NextStep(StepDirection)

Source:
IField.cs

Move as specified in direction.

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)

Parameters

direction
StepDirection

What step to do next.

Applies to

NextStep(IEnumerable<String>)

Source:
IField.cs

Ask the user which of the fields to move to next.

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

Parameters

names
IEnumerable<String>

Enumeration of possible next steps.

Applies to