NotificationHubClient.RegistrationExistsAsync 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
RegistrationExistsAsync(String, CancellationToken) |
Asynchronously indicates that the registration already exists. |
RegistrationExistsAsync(String) |
Asynchronously indicates that the registration already exists. |
RegistrationExistsAsync(String, CancellationToken)
Asynchronously indicates that the registration already exists.
public System.Threading.Tasks.Task<bool> RegistrationExistsAsync (string registrationId, System.Threading.CancellationToken cancellationToken);
abstract member RegistrationExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.RegistrationExistsAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
Public Function RegistrationExistsAsync (registrationId As String, cancellationToken As CancellationToken) As Task(Of Boolean)
Parameters
- registrationId
- String
The registration ID.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
The task that completes the asynchronous operation.
Implements
Applies to
RegistrationExistsAsync(String)
Asynchronously indicates that the registration already exists.
public System.Threading.Tasks.Task<bool> RegistrationExistsAsync (string registrationId);
abstract member RegistrationExistsAsync : string -> System.Threading.Tasks.Task<bool>
override this.RegistrationExistsAsync : string -> System.Threading.Tasks.Task<bool>
Public Function RegistrationExistsAsync (registrationId As String) As Task(Of Boolean)
Parameters
- registrationId
- String
The registration ID.
Returns
The task that completes the asynchronous operation.
Implements
Applies to
Azure SDK for .NET