Partager via


ChoiceFactory.List Méthode

Définition

Surcharges

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

Crée une activité de message contenant une liste de choix qui a été mise en forme en tant que liste numérotée ou à puces.

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

Crée une activité de message qui inclut une liste de choix au format liste numérotée ou à puces.

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

Crée une activité de message contenant une liste de choix qui a été mise en forme en tant que liste numérotée ou à puces.

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

Paramètres

choices
IList<Choice>

Liste des choix à afficher.

text
String

Facultatif, texte du message.

speak
String

Facultatif, texte SSML à prononcer par le bot sur un canal à reconnaissance vocale.

options
ChoiceFactoryOptions

Options de mise en forme facultatives pour ajuster le rendu de la liste.

Retours

Activité avec des choix sous forme de liste numérotée ou à puces.

S’applique à

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

Crée une activité de message qui inclut une liste de choix au format liste numérotée ou à puces.

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

Paramètres

choices
IList<String>

Liste des choix à inclure.

text
String

Facultatif, texte du message à envoyer.

speak
String

Facultatif, texte à prononcer par votre bot sur un canal à reconnaissance vocale.

options
ChoiceFactoryOptions

Facultatif, les options de mise en forme à utiliser lors du rendu en tant que liste.

Retours

Activité de message créée.

S’applique à