Share via


ChoiceFactoryOptions Constructors

Definition

Overloads

ChoiceFactoryOptions()

Initializes a new instance of the ChoiceFactoryOptions class.

ChoiceFactoryOptions(String, String, String, Nullable<Boolean>)

Initializes a new instance of the ChoiceFactoryOptions class. Refer to the code in teh ConfirmPrompt for an example of usage.

ChoiceFactoryOptions()

Initializes a new instance of the ChoiceFactoryOptions class.

public ChoiceFactoryOptions ();
Public Sub New ()

Applies to

ChoiceFactoryOptions(String, String, String, Nullable<Boolean>)

Initializes a new instance of the ChoiceFactoryOptions class. Refer to the code in teh ConfirmPrompt for an example of usage.

public ChoiceFactoryOptions (string inlineSeparator, string inlineOr, string inlineOrMore, bool? includeNumbers);
new Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions : string * string * string * Nullable<bool> -> Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions
Public Sub New (inlineSeparator As String, inlineOr As String, inlineOrMore As String, includeNumbers As Nullable(Of Boolean))

Parameters

inlineSeparator
String

The inline seperator value.

inlineOr
String

The inline or value.

inlineOrMore
String

The inline or more value.

includeNumbers
Nullable<Boolean>

Flag indicating whether to include numbers as a choice.

Applies to