Share via


IHostedServiceOperations.ListExtensionVersionsAsync Method (String, String, CancellationToken)

 

The List Extension Versions operation lists the versions of an extension that are available to add to a cloud service. In Azure, a process can run as an extension of a cloud service. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as extensions to the cloud service. (see https://msdn.microsoft.com/library/windowsazure/dn495437.aspx for more information)

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

Syntax

Task<HostedServiceListAvailableExtensionsResponse> ListExtensionVersionsAsync(
    string providerNamespace,
    string extensionType,
    CancellationToken cancellationToken
)
Task<HostedServiceListAvailableExtensionsResponse^>^ ListExtensionVersionsAsync(
    String^ providerNamespace,
    String^ extensionType,
    CancellationToken cancellationToken
)
abstract ListExtensionVersionsAsync : 
        providerNamespace:string *
        extensionType:string *
        cancellationToken:CancellationToken -> Task<HostedServiceListAvailableExtensionsResponse>
Function ListExtensionVersionsAsync (
    providerNamespace As String,
    extensionType As String,
    cancellationToken As CancellationToken
) As Task(Of HostedServiceListAvailableExtensionsResponse)

Parameters

Return Value

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

The List Available Extensions operation response.

See Also

IHostedServiceOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top