共用方式為


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

聲控標籤 (文字轉換語音的 SSML 標記)

min
Nullable<Int64>

Minimun 值。

max
Nullable<Int64>

最大值。

適用於