IDatabaseOperations.ListAsync Method

Returns a collection of Azure SQL Databases.

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

Usage

'Usage
Dim instance As IDatabaseOperations
Dim serverName As String
Dim cancellationToken As CancellationToken
Dim returnValue As Task(Of DatabaseListResponse)

returnValue = instance.ListAsync(serverName, cancellationToken)

Syntax

'Declaration
Function ListAsync ( _
    serverName As String, _
    cancellationToken As CancellationToken _
) As Task(Of DatabaseListResponse)
Task<DatabaseListResponse> ListAsync (
    string serverName,
    CancellationToken cancellationToken
)
Task<DatabaseListResponse^>^ ListAsync (
    String^ serverName, 
    CancellationToken cancellationToken
)
Task<DatabaseListResponse> ListAsync (
    String serverName, 
    CancellationToken cancellationToken
)
function ListAsync (
    serverName : String, 
    cancellationToken : CancellationToken
) : Task<DatabaseListResponse>

Parameters

  • serverName
    The name of the Azure SQL Database Server from which to retrieve the database.
  • cancellationToken
    Cancellation token.

Return Value

Contains a collection of databases for a given Azure SQL Database Server.

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

IDatabaseOperations Interface
IDatabaseOperations Members
Microsoft.WindowsAzure.Management.Sql Namespace