PromptOptionsWithSynonyms<T> Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Construit les options d’invite.
public PromptOptionsWithSynonyms (string prompt, string retry = default, string tooManyAttempts = default, System.Collections.Generic.IReadOnlyDictionary<T,System.Collections.Generic.IReadOnlyList<T>> choices = default, int attempts = 3, Microsoft.Bot.Builder.Dialogs.PromptStyler promptStyler = default, System.Collections.Generic.IReadOnlyList<string> descriptions = default, string speak = default, string retrySpeak = default, Microsoft.Bot.Builder.Dialogs.IPromptRecognizer recognizer = default);
new Microsoft.Bot.Builder.Dialogs.PromptOptionsWithSynonyms<'T> : string * string * string * System.Collections.Generic.IReadOnlyDictionary<'T, System.Collections.Generic.IReadOnlyList<'T>> * int * Microsoft.Bot.Builder.Dialogs.PromptStyler * System.Collections.Generic.IReadOnlyList<string> * string * string * Microsoft.Bot.Builder.Dialogs.IPromptRecognizer -> Microsoft.Bot.Builder.Dialogs.PromptOptionsWithSynonyms<'T>
Public Sub New (prompt As String, Optional retry As String = Nothing, Optional tooManyAttempts As String = Nothing, Optional choices As IReadOnlyDictionary(Of T, IReadOnlyList(Of T)) = Nothing, Optional attempts As Integer = 3, Optional promptStyler As PromptStyler = Nothing, Optional descriptions As IReadOnlyList(Of String) = Nothing, Optional speak As String = Nothing, Optional retrySpeak As String = Nothing, Optional recognizer As IPromptRecognizer = Nothing)
Paramètres
- prompt
- String
Invite.
- retry
- String
Éléments à afficher lors de la nouvelle tentative.
- tooManyAttempts
- String
Éléments à afficher quand l’utilisateur n’a pas dit de réponse valide après Attempts.
- choices
- IReadOnlyDictionary<T,IReadOnlyList<T>>
Valeurs de choix d’invite.
- attempts
- Int32
Nombre maximal de tentatives.
- promptStyler
- PromptStyler
Styleur d’invite.
- descriptions
- IReadOnlyList<String>
Descriptions de chaque invite.
- speak
- String
Balise Speak (balisage SSML pour la synthèse vocale).
- retrySpeak
- String
Éléments à afficher lors de la nouvelle tentative speak (balisage SSML pour la synthèse vocale).
- recognizer
- IPromptRecognizer
Entity Recognizer pour analyser le contenu du message.