Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IDbAsyncEnumerator Interface

Entity Framework 6.0
 

Asynchronous version of the IEnumerator interface that allows elements to be retrieved asynchronously. This interface is used to interact with Entity Framework queries and shouldn't be implemented by custom classes.

Namespace:   System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

public interface class IDbAsyncEnumerator : IDisposable

NameDescription
System_CAPS_pubpropertyCurrent

Gets the current element in the iteration.

NameDescription
System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

System_CAPS_pubmethodMoveNextAsync(CancellationToken)

Advances the enumerator to the next element in the sequence, returning the result asynchronously.

Return to top
Show: