次の方法で共有


HostedServiceOperationsExtensions.DeleteExtensionAsync メソッド

定義

拡張機能の削除操作は、指定した拡張機能をクラウド サービスから削除します。 (詳細については、 を参照 http://msdn.microsoft.com/en-us/library/windowsazure/dn169560.aspx してください)

public static System.Threading.Tasks.Task<Microsoft.Azure.OperationStatusResponse> DeleteExtensionAsync (this Microsoft.WindowsAzure.Management.Compute.IHostedServiceOperations operations, string serviceName, string extensionId);
static member DeleteExtensionAsync : Microsoft.WindowsAzure.Management.Compute.IHostedServiceOperations * string * string -> System.Threading.Tasks.Task<Microsoft.Azure.OperationStatusResponse>
<Extension()>
Public Function DeleteExtensionAsync (operations As IHostedServiceOperations, serviceName As String, extensionId As String) As Task(Of OperationStatusResponse)

パラメーター

operations
IHostedServiceOperations

Microsoft.WindowsAzure.Management.Compute.IHostedServiceOperations への参照。

serviceName
String

必須。 クラウド サービスの名前。

extensionId
String

必須。 クラウド サービスに追加されたときに拡張機能に割り当てられた識別子

戻り値

Task<Microsoft.Azure.OperationStatusResponse>

応答本文には、指定した非同期操作の状態が含まれ、成功したか、失敗したかが示されます。 この状態は、操作状態の取得操作自体に返される HTTP 状態コードとは異なります。 非同期操作が正常に終了した場合、応答本文には正常終了した要求の HTTP ステータス コードが含まれます。 非同期操作が失敗した場合、応答本文には、失敗した要求の HTTP 状態コードと、エラーに関するエラー情報が含まれます。

適用対象