Compartir a través de


ChoiceFactory.SuggestedAction Método

Definición

Sobrecargas

SuggestedAction(IList<Choice>, String, String)

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

SuggestedAction(IList<String>, String, String)

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

SuggestedAction(IList<Choice>, String, String)

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Parámetros

choices
IList<Choice>

Lista de opciones que se van a agregar.

text
String

Opcional, texto del mensaje.

speak
String

Opcional, el bot habla texto SSML en un canal habilitado para voz.

Devoluciones

Actividad con opciones como acciones sugeridas.

Se aplica a

SuggestedAction(IList<String>, String, String)

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Parámetros

choices
IList<String>

Lista de cadenas que representan las opciones que se van a agregar.

text
String

Opcional, texto del mensaje.

speak
String

Opcional, el bot habla texto SSML en un canal habilitado para voz.

Devoluciones

Actividad con opciones como acciones sugeridas.

Se aplica a

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

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Parámetros

choices
IList<Choice>

Lista de opciones que se van a agregar.

text
String

Opcional, texto del mensaje.

speak
String

Opcional, el bot habla texto SSML en un canal habilitado para voz.

toList
IList<String>

Opcional, la lista de destinatarios.

Devoluciones

Actividad con opciones como acciones sugeridas.

Se aplica a

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

Crea una actividad de mensaje que contiene una lista de opciones que se han agregado como acciones sugeridas.

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

Parámetros

choices
IList<String>

Lista de cadenas que representan las opciones que se van a agregar.

text
String

Opcional, texto del mensaje.

speak
String

Opcional, el bot habla texto SSML en un canal habilitado para voz.

toList
IList<String>

Opcional, la lista de destinatarios.

Devoluciones

Actividad con opciones como acciones sugeridas.

Se aplica a