3 implementations of Current
NuGet.Common (1)
AsyncEnumerable\AggregateEnumeratorAsync.cs (1)
42public T Current
NuGet.Protocol (2)
LegacyFeed\V2FeedListResource.cs (1)
178public IPackageSearchMetadata Current
LocalRepositories\LocalPackageListResource.cs (1)
105public IPackageSearchMetadata Current
7 references to Current
NuGet.Commands (2)
ListCommand\ListCommandRunner.cs (2)
169var p = asyncEnumerator.Current; 193var p = asyncEnumerator.Current;
NuGet.Common (5)
AsyncEnumerable\AggregateEnumeratorAsync.cs (5)
51return _currentEnumeratorAsync.Current; 78if (!hasValue || _orderingComparer.Compare(currentValue!, enumerator.Current) > 0) 81currentValue = enumerator.Current; 106if (hasNext && (!hasValue || _orderingComparer.Compare(currentValue!, enumerator.Current) > 0)) 109currentValue = enumerator.Current;