你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FabricClient.PropertyManagementClient.DeletePropertyAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DeletePropertyAsync(Uri, String) |
删除指定的 Service Fabric 属性。 |
DeletePropertyAsync(Uri, String, TimeSpan, CancellationToken) |
删除指定的 Service Fabric 属性。 |
DeletePropertyAsync(Uri, String)
删除指定的 Service Fabric 属性。
public System.Threading.Tasks.Task DeletePropertyAsync (Uri parentName, string propertyName);
member this.DeletePropertyAsync : Uri * string -> System.Threading.Tasks.Task
Public Function DeletePropertyAsync (parentName As Uri, propertyName As String) As Task
参数
- parentName
- Uri
属性的父 Service Fabric 名称。
- propertyName
- String
Service Fabric 属性的名称。
返回
表示异步删除操作的任务。
例外
有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 。
有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 。
由以下原因之一引起:
InvalidNameUri 当 不是有效的 Service Fabric 名称时 parentName
,将返回 。
另 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 请参阅处理常见的 FabricClient 故障。
发生内部错误时,将引发此异常。
注解
操作的超时将设置为默认超时 (1 分钟) 。
适用于
DeletePropertyAsync(Uri, String, TimeSpan, CancellationToken)
删除指定的 Service Fabric 属性。
public System.Threading.Tasks.Task DeletePropertyAsync (Uri parentName, string propertyName, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.DeletePropertyAsync : Uri * string * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function DeletePropertyAsync (parentName As Uri, propertyName As String, timeout As TimeSpan, cancellationToken As CancellationToken) As Task
参数
- parentName
- Uri
URI 定义属性的父 Service Fabric 名称。
- propertyName
- String
字符串定义 Service Fabric 属性的名称。
- timeout
- TimeSpan
TimeSpan 定义系统在返回 TimeoutException之前允许此操作继续的最长时间。
- cancellationToken
- CancellationToken
CancellationToken 该操作正在观察的 。 它可用于传播应取消操作的通知。
返回
表示异步删除操作的任务。
例外
有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 。
有关处理常见 FabricClient 故障,请参阅 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 。
由以下原因之一引起:
InvalidNameUri 当 不是有效的 Service Fabric 名称时 parentName
,将返回 。
另 https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions 请参阅处理常见的 FabricClient 故障。
发生内部错误时,将引发此异常。
注解
操作的超时将设置为默认超时 (1 分钟) 。