NotificationHubClient.CreateOrUpdateRegistrationAsync 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
CreateOrUpdateRegistrationAsync<T>(T) |
Crée ou met à jour de manière asynchrone l’inscription du client. |
CreateOrUpdateRegistrationAsync<T>(T, CancellationToken) |
Crée ou met à jour de manière asynchrone l’inscription du client. |
CreateOrUpdateRegistrationAsync<T>(T)
Crée ou met à jour de manière asynchrone l’inscription du client.
public System.Threading.Tasks.Task<T> CreateOrUpdateRegistrationAsync<T> (T registration) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member CreateOrUpdateRegistrationAsync : 'T -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
override this.CreateOrUpdateRegistrationAsync : 'T -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function CreateOrUpdateRegistrationAsync(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 ou à mettre à jour.
Retours
Objet de tâche représentant l'opération asynchrone.
Implémente
Exceptions
Levée lorsque l’objet RegistrationId a la valeur Null
S’applique à
CreateOrUpdateRegistrationAsync<T>(T, CancellationToken)
Crée ou met à jour de manière asynchrone l’inscription du client.
public System.Threading.Tasks.Task<T> CreateOrUpdateRegistrationAsync<T> (T registration, System.Threading.CancellationToken cancellationToken) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member CreateOrUpdateRegistrationAsync : 'T * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
override this.CreateOrUpdateRegistrationAsync : 'T * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function CreateOrUpdateRegistrationAsync(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 ou à mettre à jour.
- cancellationToken
- CancellationToken
CancellationToken à observer en attendant qu'une tâche se termine.
Retours
Objet de tâche représentant l'opération asynchrone.
Implémente
Exceptions
Levée lorsque l’objet RegistrationId a la valeur Null
S’applique à
Azure SDK for .NET