INotificationHubClient.CreateRegistrationAsync 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
CreateRegistrationAsync<T>(T, CancellationToken) |
Asynchronously creates a registration. |
CreateRegistrationAsync<T>(T) |
Asynchronously creates a registration. |
CreateRegistrationAsync<T>(T, CancellationToken)
Asynchronously creates a registration.
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)
Type Parameters
- T
The type of registration.
Parameters
- registration
- T
The registration to create.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
The task that completes the asynchronous operation.
Exceptions
NotificationHubPath in RegistrationDescription is not valid. or RegistrationId should be null or empty
Applies to
CreateRegistrationAsync<T>(T)
Asynchronously creates a registration.
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)
Type Parameters
- T
The type of registration.
Parameters
- registration
- T
The registration to create.
Returns
The task that completes the asynchronous operation.
Exceptions
NotificationHubPath in RegistrationDescription is not valid. or RegistrationId should be null or empty
Applies to
Azure SDK for .NET