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

FabricClient.ServiceGroupManagementClient.DeleteServiceGroupAsync 方法

定义

重载

DeleteServiceGroupAsync(Uri)

异步删除指定的服务组。

DeleteServiceGroupAsync(Uri, TimeSpan, CancellationToken)

异步删除具有提供的超时和 CancellationToken的指定服务组。

DeleteServiceGroupAsync(Uri)

异步删除指定的服务组。

public System.Threading.Tasks.Task DeleteServiceGroupAsync (Uri serviceGroupName);
member this.DeleteServiceGroupAsync : Uri -> System.Threading.Tasks.Task
Public Function DeleteServiceGroupAsync (serviceGroupName As Uri) As Task

参数

serviceGroupName
Uri

要删除的服务组的名称。

返回

表示异步服务组删除操作的任务。

例外

对象 FabricClient 处于关闭状态。 释放正在使用的对象 FabricClient 并实例化新 FabricClient 对象。

适用于

DeleteServiceGroupAsync(Uri, TimeSpan, CancellationToken)

异步删除具有提供的超时和 CancellationToken的指定服务组。

public System.Threading.Tasks.Task DeleteServiceGroupAsync (Uri serviceGroupName, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.DeleteServiceGroupAsync : Uri * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function DeleteServiceGroupAsync (serviceGroupName As Uri, timeout As TimeSpan, cancellationToken As CancellationToken) As Task

参数

serviceGroupName
Uri

要删除的服务组的名称。

timeout
TimeSpan

定义 Service Fabric 允许在返回超时异常之前继续此操作的最长时间的时间跨度。

cancellationToken
CancellationToken

CancellationToken操作正在观察的对象。 它可用于发送应取消操作的通知。 请注意,取消是建议性的,即使取消了操作,操作仍可能已完成。

返回

表示异步服务组删除操作的任务。

例外

对象 FabricClient 处于关闭状态。 释放正在使用的对象 FabricClient 并实例化新 FabricClient 对象。

适用于