次の方法で共有


PromptDialog.Number メソッド

定義

オーバーロード

Number(IDialogContext, ResumeAfter<Double>, String, String, Int32, String, Nullable<Double>, Nullable<Double>)

倍精度浮動小数点型 (double) の入力を求めるメッセージを表示します。

Number(IDialogContext, ResumeAfter<Int64>, String, String, Int32, String, Nullable<Int64>, Nullable<Int64>)

長整数型 (long) の入力を求めるメッセージを表示します。

Number(IDialogContext, ResumeAfter<Double>, String, String, Int32, String, Nullable<Double>, Nullable<Double>)

ソース:
PromptDialog.cs

倍精度浮動小数点型 (double) の入力を求めるメッセージを表示します。

public static void Number (Microsoft.Bot.Builder.Dialogs.IDialogContext context, Microsoft.Bot.Builder.Dialogs.ResumeAfter<double> resume, string prompt, string retry = default, int attempts = 3, string speak = default, double? min = default, double? max = default);
static member Number : Microsoft.Bot.Builder.Dialogs.IDialogContext * Microsoft.Bot.Builder.Dialogs.ResumeAfter<double> * string * string * int * string * Nullable<double> * Nullable<double> -> unit
Public Shared Sub Number (context As IDialogContext, resume As ResumeAfter(Of Double), prompt As String, Optional retry As String = Nothing, Optional attempts As Integer = 3, Optional speak As String = Nothing, Optional min As Nullable(Of Double) = Nothing, Optional max As Nullable(Of Double) = Nothing)

パラメーター

context
IDialogContext

コンテキスト。

resume
ResumeAfter<Double>

再開ハンドラー。

prompt
String

ユーザーに表示するプロンプト。

retry
String

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

attempts
Int32

再試行する回数。

speak
String

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

min
Nullable<Double>

Minimun 値。

max
Nullable<Double>

最大値です。

適用対象

Number(IDialogContext, ResumeAfter<Int64>, String, String, Int32, String, Nullable<Int64>, Nullable<Int64>)

ソース:
PromptDialog.cs

長整数型 (long) の入力を求めるメッセージを表示します。

public static void Number (Microsoft.Bot.Builder.Dialogs.IDialogContext context, Microsoft.Bot.Builder.Dialogs.ResumeAfter<long> resume, string prompt, string retry = default, int attempts = 3, string speak = default, long? min = default, long? max = default);
static member Number : Microsoft.Bot.Builder.Dialogs.IDialogContext * Microsoft.Bot.Builder.Dialogs.ResumeAfter<int64> * string * string * int * string * Nullable<int64> * Nullable<int64> -> unit
Public Shared Sub Number (context As IDialogContext, resume As ResumeAfter(Of Long), prompt As String, Optional retry As String = Nothing, Optional attempts As Integer = 3, Optional speak As String = Nothing, Optional min As Nullable(Of Long) = Nothing, Optional max As Nullable(Of Long) = Nothing)

パラメーター

context
IDialogContext

コンテキスト。

resume
ResumeAfter<Int64>

再開ハンドラー。

prompt
String

ユーザーに表示するプロンプト。

retry
String

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

attempts
Int32

再試行する回数。

speak
String

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

min
Nullable<Int64>

Minimun 値。

max
Nullable<Int64>

最大値です。

適用対象