Click or drag to resize
IAsyncEnumeratorT Interface
Asynchronous version of the IEnumerator<T> interface, allowing elements to be retrieved asynchronously.

Namespace: System.Collections.Generic
Assembly: System.Interactive.Async (in System.Interactive.Async.dll) Version: 1.2.0.0
Syntax
C#
public interface IAsyncEnumerator<out T> : IDisposable

Type Parameters

T
Element type.

The IAsyncEnumeratorT type exposes the following members.

Properties
  NameDescription
Public propertyCurrent
Gets the current element in the iteration.
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodMoveNext
Advances the enumerator to the next element in the sequence, returning the result asynchronously.
Top
Extension Methods
  NameDescription
Public Extension MethodMoveNextT
Advances the enumerator to the next element in the sequence, returning the result asynchronously.
(Defined by AsyncEnumerator.)
Top
See Also