次の方法で共有


PromptDialog.PromptDouble コンストラクター

定義

オーバーロード

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

プロンプトの二重ダイアログのコンストラクター。

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

プロンプトの二重ダイアログのコンストラクター。

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

プロンプトの二重ダイアログのコンストラクター。

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)

パラメーター

promptOptions
PromptOptions<Double>

プロンプト オプション。

min
Nullable<Double>

ミニムン値。

max
Nullable<Double>

最大値です。

適用対象

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

プロンプトの二重ダイアログのコンストラクター。

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)

パラメーター

prompt
String

プロンプト。

retry
String

再試行時に表示する内容。

attempts
Int32

最大試行回数。

speak
String

Speak タグ (テキスト読み上げ用の SSML マークアップ)

min
Nullable<Double>

ミニムン値。

max
Nullable<Double>

最大値です。

適用対象