Share via


IQuotaOperations.GetAsync Method (String, String, CancellationToken)

 

Retrieves the specified quota from the server.

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

Syntax

Task<QuotaGetResponse> GetAsync(
    string serverName,
    string quotaName,
    CancellationToken cancellationToken
)
Task<QuotaGetResponse^>^ GetAsync(
    String^ serverName,
    String^ quotaName,
    CancellationToken cancellationToken
)
abstract GetAsync : 
        serverName:string *
        quotaName:string *
        cancellationToken:CancellationToken -> Task<QuotaGetResponse>
Function GetAsync (
    serverName As String,
    quotaName As String,
    cancellationToken As CancellationToken
) As Task(Of QuotaGetResponse)

Parameters

  • serverName
    Type: System.String

    The name of the Azure SQL Database Server from which to retrieve the quota.

  • quotaName
    Type: System.String

    The name of the quota to retrieve.

Return Value

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

Represents the response structure for the Quota Get operation.

See Also

IQuotaOperations Interface
Microsoft.WindowsAzure.Management.Sql Namespace

Return to top