HostedServiceOperationsExtensions.ListExtensionVersions Method (IHostedServiceOperations, String, String)
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
public static HostedServiceListAvailableExtensionsResponse ListExtensionVersions(
this IHostedServiceOperations operations,
string providerNamespace,
string extensionType
)
public:
[ExtensionAttribute]
static HostedServiceListAvailableExtensionsResponse^ ListExtensionVersions(
IHostedServiceOperations^ operations,
String^ providerNamespace,
String^ extensionType
)
static member ListExtensionVersions :
operations:IHostedServiceOperations *
providerNamespace:string *
extensionType:string -> HostedServiceListAvailableExtensionsResponse
<ExtensionAttribute>
Public Shared Function ListExtensionVersions (
operations As IHostedServiceOperations,
providerNamespace As String,
extensionType As String
) As HostedServiceListAvailableExtensionsResponse
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Compute.IHostedServiceOperationsReference to the Microsoft.WindowsAzure.Management.Compute.IHostedServiceOperations.
providerNamespace
Type: System.StringRequired. The provider namespace.
extensionType
Type: System.StringRequired. The extension type name.
Return Value
Type: Microsoft.WindowsAzure.Management.Compute.Models.HostedServiceListAvailableExtensionsResponse
The List Available Extensions operation response.
See Also
HostedServiceOperationsExtensions Class
Microsoft.WindowsAzure.Management.Compute Namespace
Return to top