NotificationHubClient.CreateOrUpdateInstallationAsync Method

Definition

Overloads

CreateOrUpdateInstallationAsync(Installation, CancellationToken)

Creates or updates a device installation asynchronously.

CreateOrUpdateInstallationAsync(Installation)

Creates or updates a device installation asynchronously.

CreateOrUpdateInstallationAsync(Installation, CancellationToken)

Creates or updates a device installation asynchronously.

public System.Threading.Tasks.Task CreateOrUpdateInstallationAsync (Microsoft.Azure.NotificationHubs.Installation installation, System.Threading.CancellationToken cancellationToken);
abstract member CreateOrUpdateInstallationAsync : Microsoft.Azure.NotificationHubs.Installation * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateOrUpdateInstallationAsync : Microsoft.Azure.NotificationHubs.Installation * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function CreateOrUpdateInstallationAsync (installation As Installation, cancellationToken As CancellationToken) As Task

Parameters

installation
Installation

The device installation object.

cancellationToken
CancellationToken

A CancellationToken to observe while waiting for a task to complete.

Returns

A task that represents the asynchronous operation.

Implements

Exceptions

Thrown when the installation object is null

InstallationId must be specified

Applies to

CreateOrUpdateInstallationAsync(Installation)

Creates or updates a device installation asynchronously.

public System.Threading.Tasks.Task CreateOrUpdateInstallationAsync (Microsoft.Azure.NotificationHubs.Installation installation);
abstract member CreateOrUpdateInstallationAsync : Microsoft.Azure.NotificationHubs.Installation -> System.Threading.Tasks.Task
override this.CreateOrUpdateInstallationAsync : Microsoft.Azure.NotificationHubs.Installation -> System.Threading.Tasks.Task
Public Function CreateOrUpdateInstallationAsync (installation As Installation) As Task

Parameters

installation
Installation

The device installation object.

Returns

A task that represents the asynchronous operation.

Implements

Exceptions

Thrown when the installation object is null

InstallationId must be specified

Applies to