MoveNext - 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)
Task<bool> MoveNext(
CancellationToken cancellationToken
)
Type: System.Threading.CancellationToken
Cancellation token that can be used to cancel the operation.
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.
IAsyncEnumerator<T> Interface
System.Collections.Generic Namespace