MessageFactory.Attachment Méthode
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.
Surcharges
Attachment(Attachment, String, String, String) |
Retourne une activité de message qui contient une pièce jointe. |
Attachment(IEnumerable<Attachment>, String, String, String) |
Retourne une activité de message qui contient une collection de pièces jointes, dans une liste. |
Attachment(Attachment, String, String, String)
Retourne une activité de message qui contient une pièce jointe.
public static Microsoft.Bot.Schema.IMessageActivity Attachment (Microsoft.Bot.Schema.Attachment attachment, string text = default, string ssml = default, string inputHint = default);
static member Attachment : Microsoft.Bot.Schema.Attachment * string * string * string -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function Attachment (attachment As Attachment, Optional text As String = Nothing, Optional ssml As String = Nothing, Optional inputHint As String = Nothing) As IMessageActivity
Paramètres
- attachment
- Attachment
Pièce jointe à inclure dans le message.
- text
- String
Facultatif, texte du message à envoyer.
- ssml
- String
Facultatif, texte à prononcer par votre bot sur un canal à reconnaissance vocale.
- inputHint
- String
Facultatif, indique si votre bot accepte, attend ou ignore l’entrée utilisateur une fois le message remis au client. L’un des éléments suivants : « acceptInput », « ignoringInput » ou « expectingInput ». La valeur par défaut est « acceptInput ».
Retours
Activité de message contenant la pièce jointe.
Exceptions
attachment
a la valeur null
.
Voir aussi
- Carousel(IEnumerable<Attachment>, String, String, String)
- Attachment(IEnumerable<Attachment>, String, String, String)
S’applique à
Attachment(IEnumerable<Attachment>, String, String, String)
Retourne une activité de message qui contient une collection de pièces jointes, dans une liste.
public static Microsoft.Bot.Schema.IMessageActivity Attachment (System.Collections.Generic.IEnumerable<Microsoft.Bot.Schema.Attachment> attachments, string text = default, string ssml = default, string inputHint = default);
static member Attachment : seq<Microsoft.Bot.Schema.Attachment> * string * string * string -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function Attachment (attachments As IEnumerable(Of Attachment), Optional text As String = Nothing, Optional ssml As String = Nothing, Optional inputHint As String = Nothing) As IMessageActivity
Paramètres
- attachments
- IEnumerable<Attachment>
Pièces jointes à inclure dans le message.
- text
- String
Facultatif, texte du message à envoyer.
- ssml
- String
Facultatif, texte à prononcer par votre bot sur un canal à reconnaissance vocale.
- inputHint
- String
Facultatif, indique si votre bot accepte, attend ou ignore l’entrée utilisateur une fois le message remis au client. L’un des éléments suivants : « acceptInput », « ignoringInput » ou « expectingInput ». La valeur par défaut est « acceptInput ».
Retours
Activité de message contenant la pièce jointe.
Exceptions
attachments
a la valeur null
.
Voir aussi
- Attachment(Attachment, String, String, String)
- Carousel(IEnumerable<Attachment>, String, String, String)