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>)

Source:
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>

微型门值。

max
Nullable<Int64>

最大值。

适用于

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

Source:
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>

微型门值。

max
Nullable<Int64>

最大值。

适用于