3 implementations of MoveNextAsync
NuGet.Common (1)
AsyncEnumerable\AggregateEnumeratorAsync.cs (1)
55
public async Task<bool>
MoveNextAsync
()
NuGet.Protocol (2)
LegacyFeed\V2FeedListResource.cs (1)
186
public async Task<bool>
MoveNextAsync
()
LocalRepositories\LocalPackageListResource.cs (1)
113
public async Task<bool>
MoveNextAsync
()
4 references to MoveNextAsync
NuGet.Commands (2)
ListCommand\ListCommandRunner.cs (2)
167
while (await asyncEnumerator.
MoveNextAsync
())
191
while (await asyncEnumerator.
MoveNextAsync
())
NuGet.Common (2)
AsyncEnumerable\AggregateEnumeratorAsync.cs (2)
67
if (!await enumerator.
MoveNextAsync
())
95
hasNext = await enumerator.
MoveNextAsync
();