Share via


IDacOperations.ExportAsync Method (String, DacExportParameters, CancellationToken)

 

Exports an Azure SQL Database into a DACPAC file in Azure Blob Storage.

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

Syntax

Task<DacImportExportResponse> ExportAsync(
    string serverName,
    DacExportParameters parameters,
    CancellationToken cancellationToken
)
Task<DacImportExportResponse^>^ ExportAsync(
    String^ serverName,
    DacExportParameters^ parameters,
    CancellationToken cancellationToken
)
abstract ExportAsync : 
        serverName:string *
        parameters:DacExportParameters *
        cancellationToken:CancellationToken -> Task<DacImportExportResponse>
Function ExportAsync (
    serverName As String,
    parameters As DacExportParameters,
    cancellationToken As CancellationToken
) As Task(Of DacImportExportResponse)

Parameters

  • serverName
    Type: System.String

    The name of the Azure SQL Database Server in which the database to export resides.

Return Value

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

Represents the response that the service returns once an import or export operation has been initiated.

See Also

IDacOperations Interface
Microsoft.WindowsAzure.Management.Sql Namespace

Return to top