IAsyncEnumerator<T> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
IAsyncEnumerator interface
generic <typename T>
public interface class IAsyncEnumerator : IDisposable
public interface IAsyncEnumerator<out T> : IDisposable
type IAsyncEnumerator<'T> = interface
interface IDisposable
Public Interface IAsyncEnumerator(Of Out T)
Implements IDisposable
Type Parameters
- T
Type of item
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.- Implements
Properties
Current |
Gets the element in the collection at the current position of the enumerator. |
Methods
MoveNextAsync() |
Move to next item |