HostedServiceOperationsExtensions.AddExtensionAsync Method
Asynchronously adds an available extension to a cloud service.
Namespace: Microsoft.WindowsAzure.Management.Compute
Assembly: Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)
Usage
'Usage
Dim operations As IHostedServiceOperations
Dim serviceName As String
Dim parameters As HostedServiceAddExtensionParameters
Dim returnValue As Task(Of OperationStatusResponse)
returnValue = HostedServiceOperationsExtensions.AddExtensionAsync(operations, serviceName, parameters)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function AddExtensionAsync ( _
operations As IHostedServiceOperations, _
serviceName As String, _
parameters As HostedServiceAddExtensionParameters _
) As Task(Of OperationStatusResponse)
[ExtensionAttribute]
public static Task<OperationStatusResponse> AddExtensionAsync (
IHostedServiceOperations operations,
string serviceName,
HostedServiceAddExtensionParameters parameters
)
[ExtensionAttribute]
public:
static Task<OperationStatusResponse^>^ AddExtensionAsync (
IHostedServiceOperations^ operations,
String^ serviceName,
HostedServiceAddExtensionParameters^ parameters
)
/** @attribute ExtensionAttribute() */
public static Task<OperationStatusResponse> AddExtensionAsync (
IHostedServiceOperations operations,
String serviceName,
HostedServiceAddExtensionParameters parameters
)
ExtensionAttribute
public static function AddExtensionAsync (
operations : IHostedServiceOperations,
serviceName : String,
parameters : HostedServiceAddExtensionParameters
) : Task<OperationStatusResponse>
Parameters
- operations
The IHostedServiceOperations object that specifies the cloud service operations.
- serviceName
The name of the cloud service to which the extension should be added.
- parameters
The HostedServiceAddExtensionParameters object that specifies the cloud service operations.
Return Value
The ComputeOperationStatusResponse object that contains the status of the operation.
Remarks
If the asynchronous operation succeeds, the response includes the HTTP status code for the successful request. If the asynchronous operation failed, the response includes the HTTP status code for the failed request, and also includes error information about the failure.
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.
For more information about adding extensions, see the following resources:
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012
Target Platforms
See Also
Reference
HostedServiceOperationsExtensions Class
HostedServiceOperationsExtensions Members
Microsoft.WindowsAzure.Management.Compute Namespace