Implemented interface member:
property
Current
System.Collections.Generic.IEnumerator<T>.Current
28 references to Current
Microsoft.AspNetCore.Http (4)
FormCollection.cs (1)
210return _dictionaryEnumerator.Current;
HeaderDictionary.cs (1)
431return _dictionaryEnumerator.Current;
QueryCollection.cs (1)
226return _dictionaryEnumerator.Current;
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (1)
664Current = enumerator.Current;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
TempDataDictionary.cs (1)
291var kvp = _enumerator.Current;
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpHeaders.Generated.cs (3)
8658_current = _unknownEnumerator.Current; 15493_current = _unknownEnumerator.Current; 17614_current = _unknownEnumerator.Current;
Microsoft.AspNetCore.Shared.Tests (1)
src\Shared\Dictionary\AdaptiveCapacityDictionary.cs (1)
664Current = enumerator.Current;
Microsoft.Extensions.AI.Abstractions (1)
AdditionalPropertiesDictionary{TValue}.cs (1)
230public KeyValuePair<string, TValue> Current => _dictionaryEnumerator.Current;
Microsoft.Maui.Controls (3)
BindableObject.cs (3)
189 Current = new LocalValueEntry(_propertiesEnumerator.Current.Key, _propertiesEnumerator.Current.Value.Values.GetValue(), _propertiesEnumerator.Current.Value.Attributes);
Microsoft.VisualStudio.LanguageServices (1)
Interop\CleanableWeakComHandleTable.cs (1)
95var pair = cleanUpEnumerator.Current;
System.Collections.Immutable (2)
System\Collections\Frozen\Integer\DenseIntegralFrozenDictionary.cs (2)
56int min = int.CreateTruncating((TKeyUnderlying)(object)e.Current.Key); 60int key = int.CreateTruncating((TKeyUnderlying)(object)e.Current.Key);
System.Formats.Nrbf (1)
System\Formats\Nrbf\SystemClassWithMembersAndTypesRecord.cs (1)
53string memberName = structEnumerator.Current.Key;
System.IO.Packaging (1)
System\IO\Packaging\ContentType.cs (1)
194if (contentTypeEnumerator.Current.Key != null)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\DiagnosticCounter.cs (2)
132KeyValuePair<string, string?> current = enumerator.Current; 143current = enumerator.Current;
System.Reflection.Emit (4)
System\Reflection\Emit\ModuleBuilderImpl.cs (4)
435PopulateSequencePointsBlob(spBlobBuilder, enumerator.Current.Value, ref previousNonHiddenStartLine, ref previousNonHiddenStartColumn); 436_pdbBuilder.AddMethodDebugInformation(GetDocument(enumerator.Current.Key), _pdbBuilder.GetOrAddBlob(spBlobBuilder)); 452KeyValuePair<SymbolDocumentWriter, List<SequencePoint>> pair = enumerator.Current; 463pair = enumerator.Current;
System.Text.Json (4)
System\Text\Json\Serialization\Converters\Collection\DictionaryOfTKeyTValueConverter.cs (4)
67TKey key = enumerator.Current.Key; 69_valueConverter.Write(writer, enumerator.Current.Value, options); 86TKey key = enumerator.Current.Key; 90TValue element = enumerator.Current.Value;