Share via


IHostedServiceOperations.GetAsync Method (String, CancellationToken)

 

Asynchronously retrieves system properties for the specified cloud service.

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

Syntax

Task<HostedServiceGetResponse> GetAsync(
    string serviceName,
    CancellationToken cancellationToken
)
Task<HostedServiceGetResponse^>^ GetAsync(
    String^ serviceName,
    CancellationToken cancellationToken
)
abstract GetAsync : 
        serviceName:string *
        cancellationToken:CancellationToken -> Task<HostedServiceGetResponse>
Function GetAsync (
    serviceName As String,
    cancellationToken As CancellationToken
) As Task(Of HostedServiceGetResponse)

Parameters

  • serviceName
    Type: System.String

    The name of the cloud service for which information should be retrieved.

Return Value

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

The HostedServiceGetResponse object that contains information about the cloud service.

Remarks

These properties include the service name and service type; the name of the affinity group to which the service belongs, or its location if it is not part of an affinity group.

For more information about retrieving cloud service information, see the following resources:

See Also

IHostedServiceOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top