ChoiceFactory.List 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
参数
- 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
参数
- text
- String
(可选)要发送的消息的文本。
- speak
- String
(可选)是机器人在启用语音的通道上朗读的文本。
- options
- ChoiceFactoryOptions
可选,是呈现为列表时要使用的格式设置选项。
返回
创建的消息活动。