PromptDialog.PromptInt64 Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PromptDialog.PromptInt64(PromptOptions<Int64>, Nullable<Int64>, Nullable<Int64>) |
Constructor for a prompt int64 dialog. |
PromptDialog.PromptInt64(String, String, Int32, String, Nullable<Int64>, Nullable<Int64>) |
Constructor for a prompt int64 dialog. |
PromptDialog.PromptInt64(PromptOptions<Int64>, Nullable<Int64>, Nullable<Int64>)
- Source:
- PromptDialog.cs
Constructor for a prompt int64 dialog.
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)
Parameters
- promptOptions
- PromptOptions<Int64>
THe prompt options.
Applies to
PromptDialog.PromptInt64(String, String, Int32, String, Nullable<Int64>, Nullable<Int64>)
- Source:
- PromptDialog.cs
Constructor for a prompt int64 dialog.
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)
Parameters
- prompt
- String
The prompt.
- retry
- String
What to display on retry.
- attempts
- Int32
Maximum number of attempts.
- speak
- String
Speak tag (SSML markup for text to speech)