ChoiceFactory.SuggestedAction 方法

定义

重载

SuggestedAction(IList<Choice>, String, String)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

SuggestedAction(IList<String>, String, String)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

SuggestedAction(IList<Choice>, String, String, IList<String>)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

SuggestedAction(IList<String>, String, String, IList<String>)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

SuggestedAction(IList<Choice>, String, String)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

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

参数

choices
IList<Choice>

要添加的选项列表。

text
String

消息的可选文本。

speak
String

(可选)在启用了语音的通道上由机器人朗读的 SSML 文本。

返回

具有选项作为建议操作的活动。

适用于

SuggestedAction(IList<String>, String, String)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

public static Microsoft.Bot.Schema.IMessageActivity SuggestedAction (System.Collections.Generic.IList<string> choices, string text = default, string speak = default);
static member SuggestedAction : System.Collections.Generic.IList<string> * string * string -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function SuggestedAction (choices As IList(Of String), Optional text As String = Nothing, Optional speak As String = Nothing) As IMessageActivity

参数

choices
IList<String>

表示要添加的选项的字符串列表。

text
String

消息的可选文本。

speak
String

(可选)在启用了语音的通道上由机器人朗读的 SSML 文本。

返回

具有选项作为建议操作的活动。

适用于

SuggestedAction(IList<Choice>, String, String, IList<String>)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

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

参数

choices
IList<Choice>

要添加的选项列表。

text
String

消息的可选文本。

speak
String

(可选)在启用了语音的通道上由机器人朗读的 SSML 文本。

toList
IList<String>

可选,收件人列表。

返回

具有选项作为建议操作的活动。

适用于

SuggestedAction(IList<String>, String, String, IList<String>)

创建一个消息活动,其中包含已添加为建议操作的选项列表。

public static Microsoft.Bot.Schema.IMessageActivity SuggestedAction (System.Collections.Generic.IList<string> choices, string text = default, string speak = default, System.Collections.Generic.IList<string> toList = default);
static member SuggestedAction : System.Collections.Generic.IList<string> * string * string * System.Collections.Generic.IList<string> -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function SuggestedAction (choices As IList(Of String), Optional text As String = Nothing, Optional speak As String = Nothing, Optional toList As IList(Of String) = Nothing) As IMessageActivity

参数

choices
IList<String>

表示要添加的选项的字符串列表。

text
String

消息的可选文本。

speak
String

(可选)在启用了语音的通道上由机器人朗读的 SSML 文本。

toList
IList<String>

可选,收件人列表。

返回

具有选项作为建议操作的活动。

适用于