MessageFactory.Attachment Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Attachment(Attachment, String, String, String) |
Retorna uma atividade de mensagem que contém um anexo. |
Attachment(IEnumerable<Attachment>, String, String, String) |
Retorna uma atividade de mensagem que contém uma coleção de anexos, em uma lista. |
Attachment(Attachment, String, String, String)
Retorna uma atividade de mensagem que contém um anexo.
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
Parâmetros
- attachment
- Attachment
Anexo a ser incluído na mensagem.
- text
- String
Opcional, o texto da mensagem a ser enviada.
- ssml
- String
Opcional, texto a ser falado pelo bot em um canal habilitado para fala.
- inputHint
- String
Opcional, indica se o bot está aceitando, esperando ou ignorando a entrada do usuário depois que a mensagem é entregue ao cliente. Um de: "acceptingInput", "ignoringInput" ou "expectingInput". O padrão é "acceptingInput".
Retornos
Uma atividade de mensagem que contém o anexo.
Exceções
attachment
é null
.
Confira também
- Carousel(IEnumerable<Attachment>, String, String, String)
- Attachment(IEnumerable<Attachment>, String, String, String)
Aplica-se a
Attachment(IEnumerable<Attachment>, String, String, String)
Retorna uma atividade de mensagem que contém uma coleção de anexos, em uma lista.
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
Parâmetros
- attachments
- IEnumerable<Attachment>
Os anexos a serem incluídos na mensagem.
- text
- String
Opcional, o texto da mensagem a ser enviada.
- ssml
- String
Opcional, texto a ser falado pelo bot em um canal habilitado para fala.
- inputHint
- String
Opcional, indica se o bot está aceitando, esperando ou ignorando a entrada do usuário depois que a mensagem é entregue ao cliente. Um de: "acceptingInput", "ignoringInput" ou "expectingInput". O padrão é "acceptingInput".
Retornos
Uma atividade de mensagem que contém o anexo.
Exceções
attachments
é null
.
Confira também
- Attachment(Attachment, String, String, String)
- Carousel(IEnumerable<Attachment>, String, String, String)