INotificationHubClient.CreateRegistrationAsync 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
CreateRegistrationAsync<T>(T, CancellationToken) |
Crée de manière asynchrone une inscription. |
CreateRegistrationAsync<T>(T) |
Crée de manière asynchrone une inscription. |
CreateRegistrationAsync<T>(T, CancellationToken)
Crée de manière asynchrone une inscription.
public System.Threading.Tasks.Task<T> CreateRegistrationAsync<T> (T registration, System.Threading.CancellationToken cancellationToken) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member CreateRegistrationAsync : 'T * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function CreateRegistrationAsync(Of T As RegistrationDescription) (registration As T, cancellationToken As CancellationToken) As Task(Of T)
Paramètres de type
- T
Type d’inscription.
Paramètres
- registration
- T
Inscription à créer.
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Tâche effectuant l'opération asynchrone.
Exceptions
NotificationHubPath dans RegistrationDescription n’est pas valide. ou RegistrationId doit être null ou vide
S’applique à
CreateRegistrationAsync<T>(T)
Crée de manière asynchrone une inscription.
public System.Threading.Tasks.Task<T> CreateRegistrationAsync<T> (T registration) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member CreateRegistrationAsync : 'T -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function CreateRegistrationAsync(Of T As RegistrationDescription) (registration As T) As Task(Of T)
Paramètres de type
- T
Type d’inscription.
Paramètres
- registration
- T
Inscription à créer.
Retours
Tâche effectuant l'opération asynchrone.
Exceptions
NotificationHubPath dans RegistrationDescription n’est pas valide. ou RegistrationId doit être null ou vide
S’applique à
Azure SDK for .NET