次の方法で共有


PromptDialog.PromptInt64 コンストラクター

定義

オーバーロード

PromptDialog.PromptInt64(PromptOptions<Int64>, Nullable<Int64>, Nullable<Int64>)

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

PromptDialog.PromptInt64(String, String, Int32, String, Nullable<Int64>, Nullable<Int64>)

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

PromptDialog.PromptInt64(PromptOptions<Int64>, Nullable<Int64>, Nullable<Int64>)

ソース:
PromptDialog.cs

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

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

パラメーター

promptOptions
PromptOptions<Int64>

プロンプト オプション。

min
Nullable<Int64>

Minimun 値。

max
Nullable<Int64>

最大値です。

適用対象

PromptDialog.PromptInt64(String, String, Int32, String, Nullable<Int64>, Nullable<Int64>)

ソース:
PromptDialog.cs

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

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

パラメーター

prompt
String

プロンプト。

retry
String

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

attempts
Int32

試行の最大数。

speak
String

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

min
Nullable<Int64>

Minimun 値。

max
Nullable<Int64>

最大値です。

適用対象