Share via


DacOperationsExtensions.ExportAsync Method (IDacOperations, String, DacExportParameters)

 

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

public static Task<DacImportExportResponse> ExportAsync(
    this IDacOperations operations,
    string serverName,
    DacExportParameters parameters
)
public:
[ExtensionAttribute]
static Task<DacImportExportResponse^>^ ExportAsync(
    IDacOperations^ operations,
    String^ serverName,
    DacExportParameters^ parameters
)
static member ExportAsync : 
        operations:IDacOperations *
        serverName:string *
        parameters:DacExportParameters -> Task<DacImportExportResponse>
<ExtensionAttribute>
Public Shared Function ExportAsync (
    operations As IDacOperations,
    serverName As String,
    parameters As DacExportParameters
) As Task(Of DacImportExportResponse)

Parameters

  • serverName
    Type: System.String

    Required. 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

DacOperationsExtensions Class
Microsoft.WindowsAzure.Management.Sql Namespace

Return to top