VistaDB 6
VistaDB.Provider Namespace / VistaDBConnection Class / OpenAsync Method


In This Topic
    OpenAsync Method
    In This Topic
    An asynchronous version of System.Data.Common.DbConnection.Open, which opens a database connection with the settings specified by the System.Data.Common.DbConnection.ConnectionString. This method invokes the virtual method System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken) with CancellationToken.None.
    Overload List
    OverloadDescription
    An asynchronous version of System.Data.Common.DbConnection.Open, which opens a database connection with the settings specified by the System.Data.Common.DbConnection.ConnectionString. This method invokes the virtual method System.Data.Common.DbConnection.OpenAsync(System.Threading.CancellationToken) with CancellationToken.None. (Inherited from System.Data.Common.DbConnection)
    This is the asynchronous version of System.Data.Common.DbConnection.Open. Providers should override with an appropriate implementation. The cancellation token can optionally be honored. The default implementation invokes the synchronous System.Data.Common.DbConnection.Open call and returns a completed task. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Open will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbConnection object until the returned Task is complete. (Inherited from System.Data.Common.DbConnection)
    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