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

DeviceUpdateClient.DeleteUpdate 方法

定义

删除特定的更新版本。 这是一个长时间运行的操作;使用Operation-Location响应标头值来检查操作状态。

public virtual Azure.Operation DeleteUpdate (Azure.WaitUntil waitUntil, string provider, string name, string version, Azure.RequestContext context = default);
abstract member DeleteUpdate : Azure.WaitUntil * string * string * string * Azure.RequestContext -> Azure.Operation
override this.DeleteUpdate : Azure.WaitUntil * string * string * string * Azure.RequestContext -> Azure.Operation
Public Overridable Function DeleteUpdate (waitUntil As WaitUntil, provider As String, name As String, version As String, Optional context As RequestContext = Nothing) As Operation

参数

waitUntil
WaitUntil

Completed 如果方法应在服务上完成长时间运行的操作之前等待返回,则为 ; Started 如果它在启动操作后应返回,则为 。 有关长时间运行的操作的详细信息,请参阅 Azure.Core Long-Running 操作示例

provider
String

更新提供程序。

name
String

更新名称。

version
String

更新版本。

context
RequestContext

请求上下文,它可以基于每个调用替代客户端管道的默认行为。

返回

表示 Operation 服务上的异步操作的 。

例外

providernameversion 为 null。

providernameversion 是空字符串,预期为非空。

服务返回了不成功状态代码。

示例

此示例演示如何使用所需参数调用 DeleteUpdate。

var credential = new DefaultAzureCredential();
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new DeviceUpdateClient(endpoint, "<instanceId>", credential);

var operation = client.DeleteUpdate(WaitUntil.Completed, "<provider>", "<name>", "<version>");

var response = operation.WaitForCompletionResponse();
Console.WriteLine(response.Status)

适用于