你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

NotificationHubClient.PatchInstallationAsync 方法

定义

重载

PatchInstallationAsync(String, IList<PartialUpdateOperation>)

异步修补安装。

PatchInstallationAsync(String, IList<PartialUpdateOperation>, CancellationToken)

异步修补安装。

PatchInstallationAsync(String, IList<PartialUpdateOperation>)

异步修补安装。

public System.Threading.Tasks.Task PatchInstallationAsync (string installationId, System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> operations);
abstract member PatchInstallationAsync : string * System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> -> System.Threading.Tasks.Task
override this.PatchInstallationAsync : string * System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> -> System.Threading.Tasks.Task
Public Function PatchInstallationAsync (installationId As String, operations As IList(Of PartialUpdateOperation)) As Task

参数

installationId
String

安装标识符。

operations
IList<PartialUpdateOperation>

更新操作的集合。

返回

表示异步操作的任务。

实现

例外

当 installationId 或 operations 对象为 null 时引发

当操作列表为空时引发

适用于

PatchInstallationAsync(String, IList<PartialUpdateOperation>, CancellationToken)

异步修补安装。

public System.Threading.Tasks.Task PatchInstallationAsync (string installationId, System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> operations, System.Threading.CancellationToken cancellationToken);
abstract member PatchInstallationAsync : string * System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.PatchInstallationAsync : string * System.Collections.Generic.IList<Microsoft.Azure.NotificationHubs.PartialUpdateOperation> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function PatchInstallationAsync (installationId As String, operations As IList(Of PartialUpdateOperation), cancellationToken As CancellationToken) As Task

参数

installationId
String

安装标识符。

operations
IList<PartialUpdateOperation>

更新操作的集合。

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

表示异步操作的任务。

实现

例外

当 installationId 或 operations 对象为 null 时引发

当操作列表为空时引发

适用于