Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public interface IAsyncEnumerator<out T> : IDisposable
/// if the enumerator has passed the end of the collection.
/// </returns>
/// <exception cref="InvalidOperationException">The collection was modified after the enumerator was created.</exception>
Task<bool> MoveNextAsync(CancellationToken cancellationToken);
Task<bool> MoveNextAsync(CancellationToken cancellationToken = default);

/// <summary>
/// Sets the enumerator to its initial position, which is before the first element
Expand Down