IFormBuilder<T>.Message 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Message(MessageDelegate<T>, ActiveDelegate<T>, IEnumerable<String>) |
대리자를 사용하여 메시지를 생성하여 메시지를 동적으로 빌드합니다. |
Message(PromptAttribute, ActiveDelegate<T>, IEnumerable<String>) |
응답이 필요하지 않은 더 많은 형식 컨트롤이 있는 메시지를 표시합니다. |
Message(String, ActiveDelegate<T>, IEnumerable<String>) |
응답이 필요하지 않은 메시지를 표시합니다. |
Message(MessageDelegate<T>, ActiveDelegate<T>, IEnumerable<String>)
대리자를 사용하여 메시지를 생성하여 메시지를 동적으로 빌드합니다.
public Microsoft.Bot.Builder.FormFlow.IFormBuilder<T> Message(Microsoft.Bot.Builder.FormFlow.MessageDelegate<T> generateMessage, Microsoft.Bot.Builder.FormFlow.ActiveDelegate<T> condition = default, System.Collections.Generic.IEnumerable<string> dependencies = default);
abstract member Message : Microsoft.Bot.Builder.FormFlow.MessageDelegate<'T (requires 'T : null)> * Microsoft.Bot.Builder.FormFlow.ActiveDelegate<'T (requires 'T : null)> * seq<string> -> Microsoft.Bot.Builder.FormFlow.IFormBuilder<'T (requires 'T : null)>
Public Function Message (generateMessage As MessageDelegate(Of T), Optional condition As ActiveDelegate(Of T) = Nothing, Optional dependencies As IEnumerable(Of String) = Nothing) As IFormBuilder(Of T)
매개 변수
- generateMessage
- MessageDelegate<T>
메시지 작성을 위한 대리자입니다.
- condition
- ActiveDelegate<T>
이 단계가 활성 상태인지 여부입니다.
- dependencies
- IEnumerable<String>
필드 메시지는 에 따라 달라집니다.
반환
IFormBuilder를 수정했습니다.
적용 대상
Message(PromptAttribute, ActiveDelegate<T>, IEnumerable<String>)
응답이 필요하지 않은 더 많은 형식 컨트롤이 있는 메시지를 표시합니다.
public Microsoft.Bot.Builder.FormFlow.IFormBuilder<T> Message(Microsoft.Bot.Builder.FormFlow.PromptAttribute prompt, Microsoft.Bot.Builder.FormFlow.ActiveDelegate<T> condition = default, System.Collections.Generic.IEnumerable<string> dependencies = default);
abstract member Message : Microsoft.Bot.Builder.FormFlow.PromptAttribute * Microsoft.Bot.Builder.FormFlow.ActiveDelegate<'T (requires 'T : null)> * seq<string> -> Microsoft.Bot.Builder.FormFlow.IFormBuilder<'T (requires 'T : null)>
Public Function Message (prompt As PromptAttribute, Optional condition As ActiveDelegate(Of T) = Nothing, Optional dependencies As IEnumerable(Of String) = Nothing) As IFormBuilder(Of T)
매개 변수
- prompt
- PromptAttribute
입력하고 보낼 메시지입니다.
- condition
- ActiveDelegate<T>
이 단계가 활성 상태인지 여부입니다.
- dependencies
- IEnumerable<String>
필드 메시지는 에 따라 달라집니다.
반환
IFormBuilder를 수정했습니다.
적용 대상
Message(String, ActiveDelegate<T>, IEnumerable<String>)
응답이 필요하지 않은 메시지를 표시합니다.
public Microsoft.Bot.Builder.FormFlow.IFormBuilder<T> Message(string message, Microsoft.Bot.Builder.FormFlow.ActiveDelegate<T> condition = default, System.Collections.Generic.IEnumerable<string> dependencies = default);
abstract member Message : string * Microsoft.Bot.Builder.FormFlow.ActiveDelegate<'T (requires 'T : null)> * seq<string> -> Microsoft.Bot.Builder.FormFlow.IFormBuilder<'T (requires 'T : null)>
Public Function Message (message As String, Optional condition As ActiveDelegate(Of T) = Nothing, Optional dependencies As IEnumerable(Of String) = Nothing) As IFormBuilder(Of T)
매개 변수
- message
- String
입력하고 보낼 \ref 패턴 문자열입니다.
- condition
- ActiveDelegate<T>
이 단계가 활성 상태인지 여부입니다.
- dependencies
- IEnumerable<String>
필드 메시지는 에 따라 달라집니다.
반환
IFormBuilder를 수정했습니다.