INotificationHubClient.UpdateRegistrationAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UpdateRegistrationAsync<T>(T) |
Asynchronously updates the registration. |
UpdateRegistrationAsync<T>(T, CancellationToken) |
Asynchronously updates the registration. |
UpdateRegistrationAsync<T>(T)
Asynchronously updates the registration.
public System.Threading.Tasks.Task<T> UpdateRegistrationAsync<T> (T registration) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member UpdateRegistrationAsync : 'T -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function UpdateRegistrationAsync(Of T As RegistrationDescription) (registration As T) As Task(Of T)
Type Parameters
- T
The type of registration.
Parameters
- registration
- T
The registration to update.
Returns
A task that will complete when the update finishes.
Exceptions
Thrown when RegistrationId or ETag object is null
Applies to
UpdateRegistrationAsync<T>(T, CancellationToken)
Asynchronously updates the registration.
public System.Threading.Tasks.Task<T> UpdateRegistrationAsync<T> (T registration, System.Threading.CancellationToken cancellationToken) where T : Microsoft.Azure.NotificationHubs.RegistrationDescription;
abstract member UpdateRegistrationAsync : 'T * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)> (requires 'T :> Microsoft.Azure.NotificationHubs.RegistrationDescription)
Public Function UpdateRegistrationAsync(Of T As RegistrationDescription) (registration As T, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
The type of registration.
Parameters
- registration
- T
The registration to update.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A task that will complete when the update finishes.
Exceptions
Thrown when RegistrationId or ETag object is null
Applies to
Azure SDK for .NET