Freigeben über


PromptDialog.PromptDouble Konstruktoren

Definition

Überlädt

PromptDialog.PromptDouble(PromptOptions<Double>, Nullable<Double>, Nullable<Double>)

Konstruktor für ein Eingabeaufforderungsdoppeldialogfeld.

PromptDialog.PromptDouble(String, String, Int32, String, Nullable<Double>, Nullable<Double>)

Konstruktor für ein Eingabeaufforderungsdoppeldialogfeld.

PromptDialog.PromptDouble(PromptOptions<Double>, Nullable<Double>, Nullable<Double>)

Quelle:
PromptDialog.cs

Konstruktor für ein Eingabeaufforderungsdoppeldialogfeld.

public PromptDouble (Microsoft.Bot.Builder.Dialogs.PromptOptions<double> promptOptions, double? min = default, double? max = default);
new Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble : Microsoft.Bot.Builder.Dialogs.PromptOptions<double> * Nullable<double> * Nullable<double> -> Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble
Public Sub New (promptOptions As PromptOptions(Of Double), Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing)

Parameter

promptOptions
PromptOptions<Double>

Die Eingabeaufforderungsoptionen.

min
Nullable<Double>

Minimun-Wert.

max
Nullable<Double>

Maximalwert.

Gilt für:

PromptDialog.PromptDouble(String, String, Int32, String, Nullable<Double>, Nullable<Double>)

Quelle:
PromptDialog.cs

Konstruktor für ein Eingabeaufforderungsdoppeldialogfeld.

public PromptDouble (string prompt, string retry, int attempts, string speak = default, double? min = default, double? max = default);
new Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble : string * string * int * string * Nullable<double> * Nullable<double> -> Microsoft.Bot.Builder.Dialogs.PromptDialog.PromptDouble
Public Sub New (prompt As String, retry As String, attempts As Integer, Optional speak As String = Nothing, Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing)

Parameter

prompt
String

Die Eingabeaufforderung.

retry
String

Was beim Wiederholungsversuch angezeigt werden soll.

attempts
Int32

Maximale Anzahl von Versuchen.

speak
String

Speak-Tag (SSML-Markup für Text zu Sprache)

min
Nullable<Double>

Minimun-Wert.

max
Nullable<Double>

Maximalwert.

Gilt für: