ChoiceFactory.List 메서드

정의

오버로드

List(IList<Choice>, String, String, ChoiceFactoryOptions)

번호 매기기 또는 글머리 기호 목록으로 서식이 지정된 선택 항목 목록을 포함하는 메시지 작업을 만듭니다.

List(IList<String>, String, String, ChoiceFactoryOptions)

번호 매기기 또는 글머리 기호 목록으로 서식이 지정된 선택 항목 목록을 포함하는 메시지 작업을 만듭니다.

List(IList<Choice>, String, String, ChoiceFactoryOptions)

번호 매기기 또는 글머리 기호 목록으로 서식이 지정된 선택 항목 목록을 포함하는 메시지 작업을 만듭니다.

public static Microsoft.Bot.Schema.Activity List (System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> choices, string text = default, string speak = default, Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions options = default);
static member List : System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> * string * string * Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions -> Microsoft.Bot.Schema.Activity
Public Shared Function List (choices As IList(Of Choice), Optional text As String = Nothing, Optional speak As String = Nothing, Optional options As ChoiceFactoryOptions = Nothing) As Activity

매개 변수

choices
IList<Choice>

렌더링할 선택 항목 목록입니다.

text
String

선택 사항이며 메시지의 텍스트입니다.

speak
String

음성 지원 채널에서 봇이 말하는 선택적 SSML 텍스트입니다.

options
ChoiceFactoryOptions

선택 사항으로, 목록의 렌더링을 조정하는 서식 옵션입니다.

반환

번호 매기기 또는 글머리 기호 목록으로 선택 항목이 있는 활동입니다.

적용 대상

List(IList<String>, String, String, ChoiceFactoryOptions)

번호 매기기 또는 글머리 기호 목록으로 서식이 지정된 선택 항목 목록을 포함하는 메시지 작업을 만듭니다.

public static Microsoft.Bot.Schema.Activity List (System.Collections.Generic.IList<string> choices, string text = default, string speak = default, Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions options = default);
static member List : System.Collections.Generic.IList<string> * string * string * Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions -> Microsoft.Bot.Schema.Activity
Public Shared Function List (choices As IList(Of String), Optional text As String = Nothing, Optional speak As String = Nothing, Optional options As ChoiceFactoryOptions = Nothing) As Activity

매개 변수

choices
IList<String>

포함할 선택 항목 목록입니다.

text
String

선택 사항으로 보낼 메시지의 텍스트입니다.

speak
String

선택 사항으로, 음성 지원 채널에서 봇이 말하는 텍스트입니다.

options
ChoiceFactoryOptions

선택 사항으로 목록으로 렌더링할 때 사용할 서식 옵션입니다.

반환

만든 메시지 활동입니다.

적용 대상