Share via


ExtensionImageOperationsExtensions.BeginRegisteringAsync Method (IExtensionImageOperations, ExtensionImageRegisterParameters)

 

Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.

Namespace:   Microsoft.WindowsAzure.Management.Compute
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

public static Task<AzureOperationResponse> BeginRegisteringAsync(
    this IExtensionImageOperations operations,
    ExtensionImageRegisterParameters parameters
)
public:
[ExtensionAttribute]
static Task<AzureOperationResponse^>^ BeginRegisteringAsync(
    IExtensionImageOperations^ operations,
    ExtensionImageRegisterParameters^ parameters
)
static member BeginRegisteringAsync : 
        operations:IExtensionImageOperations *
        parameters:ExtensionImageRegisterParameters -> Task<AzureOperationResponse>
<ExtensionAttribute>
Public Shared Function BeginRegisteringAsync (
    operations As IExtensionImageOperations,
    parameters As ExtensionImageRegisterParameters
) As Task(Of AzureOperationResponse)

Parameters

Return Value

Type: System.Threading.Tasks.Task<AzureOperationResponse>

A standard service response including an HTTP status code and request ID.

See Also

ExtensionImageOperationsExtensions Class
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top