SmsClient.SendAsync 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
SendAsync(String, IEnumerable<String>, String, SmsSendOptions, CancellationToken) |
Envoie un sms à partir d’un numéro de téléphone qui appartient au compte authentifié. |
SendAsync(String, String, String, SmsSendOptions, CancellationToken) |
Envoie un SMS |
SendAsync(String, IEnumerable<String>, String, SmsSendOptions, CancellationToken)
- Source:
- SmsClient.cs
- Source:
- SmsClient.cs
Envoie un sms à partir d’un numéro de téléphone qui appartient au compte authentifié.
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)))
Paramètres
- from
- String
Numéro de téléphone de l’expéditeur au format E.164 appartenant au compte authentifié.
- to
- IEnumerable<String>
Numéro de téléphone du destinataire au format E.164. Dans cette version, jusqu’à 100 destinataires de la liste sont pris en charge.
- message
- String
Contenu du message qui sera envoyé au destinataire. Le contenu autorisé est défini par la RFC 5724.
- options
- SmsSendOptions
Configuration facultative pour l’envoi de sms.
- cancellationToken
- CancellationToken
Jeton d’annulation à utiliser.
Retours
Exceptions
Le serveur a retourné une erreur. Consultez Message pour plus d’informations retournées à partir du serveur.
message
a la valeur null.
S’applique à
SendAsync(String, String, String, SmsSendOptions, CancellationToken)
- Source:
- SmsClient.cs
- Source:
- SmsClient.cs
Envoie un SMS from
un numéro de téléphone acquis par le compte authentifié, to
un autre numéro de téléphone.
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))
Paramètres
- from
- String
Numéro de téléphone de l’expéditeur appartenant au compte authentifié.
- to
- String
Numéro de téléphone du destinataire.
- message
- String
Contenu du message qui sera envoyé au destinataire. Le contenu autorisé est défini par la RFC 5724. Si le message comporte plus de 160 caractères, le serveur le fractionne automatiquement en plusieurs SMS.
- options
- SmsSendOptions
Configuration facultative pour l’envoi de sms.
- cancellationToken
- CancellationToken
Jeton d’annulation de la tâche.
Retours
Exceptions
Le serveur a retourné une erreur. Consultez Message pour plus d’informations retournées à partir du serveur.
message
a la valeur null.
S’applique à
Azure SDK for .NET