VistaDB 6
VistaDB.Provider Namespace / VistaDBDataReader Class / ReadAsync Method


In This Topic
    ReadAsync Method
    In This Topic
    This is the asynchronous version of System.Data.Common.DbDataReader.Read. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous System.Data.Common.DbDataReader.Read method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Read will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbDataReader object until the returned Task is complete. Advances the reader to the next record in a result set.
    Overload List
    OverloadDescription
    This is the asynchronous version of System.Data.Common.DbDataReader.Read. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous System.Data.Common.DbDataReader.Read method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Read will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbDataReader object until the returned Task is complete. Advances the reader to the next record in a result set.  
    An asynchronous version of System.Data.Common.DbDataReader.Read, which advances the reader to the next record in a result set. This method invokes System.Data.Common.DbDataReader.ReadAsync(System.Threading.CancellationToken) with CancellationToken.None. (Inherited from System.Data.Common.DbDataReader)
    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