Compartilhar via


SmsClient.SendAsync Método

Definição

Sobrecargas

SendAsync(String, IEnumerable<String>, String, SmsSendOptions, CancellationToken)

Envia uma mensagem SMS de um número de telefone que pertence à conta autenticada.

SendAsync(String, String, String, SmsSendOptions, CancellationToken)

Envia um SMS from a um número de telefone adquirido pela conta autenticada, to outro número de telefone.

SendAsync(String, IEnumerable<String>, String, SmsSendOptions, CancellationToken)

Origem:
SmsClient.cs
Origem:
SmsClient.cs

Envia uma mensagem SMS de um número de telefone que pertence à conta autenticada.

public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Communication.Sms.SmsSendResult>>> SendAsync (string from, System.Collections.Generic.IEnumerable<string> to, string message, Azure.Communication.Sms.SmsSendOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SendAsync : string * seq<string> * string * Azure.Communication.Sms.SmsSendOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Communication.Sms.SmsSendResult>>>
override this.SendAsync : string * seq<string> * string * Azure.Communication.Sms.SmsSendOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<Azure.Communication.Sms.SmsSendResult>>>
Public Overridable Function SendAsync (from As String, to As IEnumerable(Of String), message As String, Optional options As SmsSendOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of SmsSendResult)))

Parâmetros

from
String

O número de telefone do remetente no formato E.164 que pertence à conta autenticada.

to
IEnumerable<String>

O número de telefone do destinatário no formato E.164. Nesta versão, há suporte para até 100 destinatários na lista.

message
String

O conteúdo da mensagem que será enviada ao destinatário. O conteúdo permitido é definido pelo RFC 5724.

options
SmsSendOptions

Configuração opcional para enviar mensagens SMS.

cancellationToken
CancellationToken

O token de cancelamento a ser usado.

Retornos

Exceções

O servidor retornou um erro. Consulte Message para obter detalhes retornados do servidor.

message é nulo.

Aplica-se a

SendAsync(String, String, String, SmsSendOptions, CancellationToken)

Origem:
SmsClient.cs
Origem:
SmsClient.cs

Envia um SMS from a um número de telefone adquirido pela conta autenticada, to outro número de telefone.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Sms.SmsSendResult>> SendAsync (string from, string to, string message, Azure.Communication.Sms.SmsSendOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SendAsync : string * string * string * Azure.Communication.Sms.SmsSendOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Sms.SmsSendResult>>
override this.SendAsync : string * string * string * Azure.Communication.Sms.SmsSendOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.Sms.SmsSendResult>>
Public Overridable Function SendAsync (from As String, to As String, message As String, Optional options As SmsSendOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SmsSendResult))

Parâmetros

from
String

O número de telefone do remetente que pertence à conta autenticada.

to
String

O número de telefone do destinatário.

message
String

O conteúdo da mensagem que será enviada ao destinatário. O conteúdo permitido é definido pelo RFC 5724. Se a mensagem tiver mais de 160 caracteres, o servidor a dividirá em vários SMSs automaticamente.

options
SmsSendOptions

Configuração opcional para enviar mensagens SMS.

cancellationToken
CancellationToken

O token de cancelamento da tarefa.

Retornos

Exceções

O servidor retornou um erro. Consulte Message para obter detalhes retornados do servidor.

message é nulo.

Aplica-se a