다음을 통해 공유


Confirmation<T> 생성자

정의

오버로드

Confirmation<T>(MessageDelegate<T>, ActiveDelegate<T>, IEnumerable<String>, IForm<T>)

확인을 동적으로 생성합니다.

Confirmation<T>(PromptAttribute, ActiveDelegate<T>, IEnumerable<String>, IForm<T>)

확인을 생성합니다.

Confirmation<T>(MessageDelegate<T>, ActiveDelegate<T>, IEnumerable<String>, IForm<T>)

Source:
Confirmation.cs

확인을 동적으로 생성합니다.

public Confirmation (Microsoft.Bot.Builder.FormFlow.MessageDelegate<T> generateMessage, Microsoft.Bot.Builder.FormFlow.ActiveDelegate<T> condition, System.Collections.Generic.IEnumerable<string> dependencies, Microsoft.Bot.Builder.FormFlow.IForm<T> form);
new Microsoft.Bot.Builder.FormFlow.Advanced.Confirmation<'T (requires 'T : null)> : Microsoft.Bot.Builder.FormFlow.MessageDelegate<'T (requires 'T : null)> * Microsoft.Bot.Builder.FormFlow.ActiveDelegate<'T (requires 'T : null)> * seq<string> * Microsoft.Bot.Builder.FormFlow.IForm<'T (requires 'T : null)> -> Microsoft.Bot.Builder.FormFlow.Advanced.Confirmation<'T (requires 'T : null)>
Public Sub New (generateMessage As MessageDelegate(Of T), condition As ActiveDelegate(Of T), dependencies As IEnumerable(Of String), form As IForm(Of T))

매개 변수

generateMessage
MessageDelegate<T>

빌드 확인을 위한 대리자입니다.

condition
ActiveDelegate<T>

위임하여 확인이 활성 상태인지 확인합니다.

dependencies
IEnumerable<String>

확인이 실행되기 전에 값이 있어야 하는 필드입니다.

form
IForm<T>

확인을 포함하는 양식입니다.

적용 대상

Confirmation<T>(PromptAttribute, ActiveDelegate<T>, IEnumerable<String>, IForm<T>)

Source:
Confirmation.cs

확인을 생성합니다.

public Confirmation (Microsoft.Bot.Builder.FormFlow.PromptAttribute prompt, Microsoft.Bot.Builder.FormFlow.ActiveDelegate<T> condition, System.Collections.Generic.IEnumerable<string> dependencies, Microsoft.Bot.Builder.FormFlow.IForm<T> form);
new Microsoft.Bot.Builder.FormFlow.Advanced.Confirmation<'T (requires 'T : null)> : Microsoft.Bot.Builder.FormFlow.PromptAttribute * Microsoft.Bot.Builder.FormFlow.ActiveDelegate<'T (requires 'T : null)> * seq<string> * Microsoft.Bot.Builder.FormFlow.IForm<'T (requires 'T : null)> -> Microsoft.Bot.Builder.FormFlow.Advanced.Confirmation<'T (requires 'T : null)>
Public Sub New (prompt As PromptAttribute, condition As ActiveDelegate(Of T), dependencies As IEnumerable(Of String), form As IForm(Of T))

매개 변수

prompt
PromptAttribute

\ref 패턴을 사용하여 표시되는 확인 프롬프트입니다.

condition
ActiveDelegate<T>

확인이 적용되는지 여부에 대한 대리자입니다.

dependencies
IEnumerable<String>

확인이 실행되기 전에 값이 있어야 하는 필드입니다.

form
IForm<T>

확인을 포함하는 양식입니다.

적용 대상