MoveNext__1 - waf/Rx.NET GitHub Wiki
Advances the enumerator to the next element in the sequence, returning the result asynchronously.
Namespace: System.Collections.Generic
Assembly: System.Interactive.Async (in System.Interactive.Async.dll)
public static Task<bool> MoveNext<T>(
this IAsyncEnumerator<T> enumerator
)
Type: System.Collections.Generic.IAsyncEnumerator<T>
[Missing <param name="enumerator"/> documentation for "M:System.Collections.Generic.AsyncEnumerator.MoveNext1(System.Collections.Generic.IAsyncEnumerator{
0})"]
[Missing <typeparam name="T"/> documentation for "M:System.Collections.Generic.AsyncEnumerator.MoveNext1(System.Collections.Generic.IAsyncEnumerator{
0})"]
Type: Task<Boolean>
Task containing the result of the operation: true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the sequence.
In Visual Basic and C#, you can call this method as an instance method on any object of type IAsyncEnumerator<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).