다음을 통해 공유


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>

THe 프롬프트 옵션입니다.

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>

최대값.

적용 대상