dotConnect for Oracle Documentation
Devart.Common Namespace / DbDump Class / EndBackup Method
The System.IAsyncResult returned by BeginBackup.

In This Topic
    EndBackup Method
    In This Topic
    Ends an asynchronous invocation of the Backup method.
    Syntax
    'Declaration
     
    Public Sub EndBackup( _
       ByVal result As IAsyncResult _
    ) 
    public void EndBackup( 
       IAsyncResult result
    )

    Parameters

    result
    The System.IAsyncResult returned by BeginBackup.
    Remarks
    The function ends an asynchronous backup that is started with BeginBackup. A pair of asynchronous functions (BeginBackup and EndBackup) can be used instead of the synchronous function Backup to gain more performance and flexibility in your application.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also