Share via


IRestorableDroppedDatabaseOperations.GetAsync Method (String, String, CancellationToken)

 

Returns information about a dropped Azure SQL Database that can be restored.

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

Syntax

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

Parameters

  • serverName
    Type: System.String

    The name of the Azure SQL Database Server on which the database was hosted.

  • entityId
    Type: System.String

    The entity ID of the restorable dropped Azure SQL Database to be obtained.

Return Value

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

Contains the response to the Get Restorable Dropped Database request.

See Also

IRestorableDroppedDatabaseOperations Interface
Microsoft.WindowsAzure.Management.Sql Namespace

Return to top