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


In This Topic
    NextResultAsync Method
    In This Topic
    This is the asynchronous version of System.Data.Common.DbDataReader.NextResult. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous System.Data.Common.DbDataReader.NextResult 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 System.Data.Common.DbDataReader.NextResult will be communicated via the returned Task Exception property. Other methods and properties of the DbDataReader object should not be invoked while the returned Task is not yet completed. Advances the reader to the next result when reading the results of a batch of statements.
    Overload List
    OverloadDescription
    This is the asynchronous version of System.Data.Common.DbDataReader.NextResult. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous System.Data.Common.DbDataReader.NextResult 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 System.Data.Common.DbDataReader.NextResult will be communicated via the returned Task Exception property. Other methods and properties of the DbDataReader object should not be invoked while the returned Task is not yet completed. Advances the reader to the next result when reading the results of a batch of statements.  
    An asynchronous version of System.Data.Common.DbDataReader.NextResult, which advances the reader to the next result when reading the results of a batch of statements. Invokes System.Data.Common.DbDataReader.NextResultAsync(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