39 implementations of Entry
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObjectTable.cs (1)
370public DictionaryEntry Entry
Microsoft.Build (1)
Collections\ArrayDictionary.cs (1)
249DictionaryEntry IDictionaryEnumerator.Entry => CurrentDictionaryEntry;
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskThatReturnsDictionaryTaskItem.cs (1)
200public DictionaryEntry Entry => new DictionaryEntry(Key, Value);
Microsoft.Build.Framework (2)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
SegmentedDictionary`2.cs (1)
1216DictionaryEntry IDictionaryEnumerator.Entry
Microsoft.CodeAnalysis (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1250readonly DictionaryEntry IDictionaryEnumerator.Entry
Microsoft.CodeAnalysis.CodeStyle (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1250readonly DictionaryEntry IDictionaryEnumerator.Entry
Microsoft.CodeAnalysis.Collections.Package (2)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
SegmentedDictionary`2.cs (1)
1250readonly DictionaryEntry IDictionaryEnumerator.Entry
Microsoft.CodeAnalysis.Scripting.TestUtilities (1)
ObjectFormatterFixtures\Custom.cs (1)
474public DictionaryEntry Entry
Microsoft.CodeAnalysis.Workspaces (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1250readonly DictionaryEntry IDictionaryEnumerator.Entry
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
47readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1250readonly DictionaryEntry IDictionaryEnumerator.Entry
PresentationCore (2)
System\Windows\Media\CharacterMetricsDictionary.cs (1)
580SC.DictionaryEntry SC.IDictionaryEnumerator.Entry
System\Windows\Media\CultureSpecificStringDictionary.cs (1)
399public SC.DictionaryEntry Entry
PresentationFramework (2)
System\Windows\Markup\Localizer\BamlLocalizationDictionary.cs (1)
44public DictionaryEntry Entry
System\Windows\ResourceDictionary.cs (1)
2150DictionaryEntry IDictionaryEnumerator.Entry
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (1)
1414readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value);
System\Collections\Generic\SortedDictionary.cs (1)
501DictionaryEntry IDictionaryEnumerator.Entry
System\Collections\Generic\SortedList.cs (1)
810DictionaryEntry IDictionaryEnumerator.Entry
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2326public DictionaryEntry Entry => new DictionaryEntry(_enumerator.Current.Key, _enumerator.Current.Value);
System.Collections.Immutable (1)
System\Collections\Immutable\DictionaryEnumerator.cs (1)
19public DictionaryEntry Entry
System.Collections.NonGeneric (1)
System\Collections\SortedList.cs (1)
841public DictionaryEntry Entry
System.Collections.Specialized (2)
System\Collections\Specialized\ListDictionary.cs (1)
286public DictionaryEntry Entry
System\Collections\Specialized\OrderedDictionary.cs (1)
481public DictionaryEntry Entry
System.ComponentModel.TypeConverter (1)
System\ComponentModel\PropertyDescriptorCollection.cs (1)
601public DictionaryEntry Entry
System.Configuration.ConfigurationManager (1)
System\Configuration\ConfigurationElementCollection.cs (1)
1295DictionaryEntry IDictionaryEnumerator.Entry => _current;
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
1843DictionaryEntry IDictionaryEnumerator.Entry
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1449public DictionaryEntry Entry
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (1)
224public DictionaryEntry Entry
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyDictionary.cs (1)
225public DictionaryEntry Entry
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
1105public DictionaryEntry Entry
src\System\Collections\EmptyReadOnlyDictionaryInternal.cs (1)
135public DictionaryEntry Entry => throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
System.Private.Xml (1)
System\Xml\Schema\XmlSchemaObjectTable.cs (1)
340public DictionaryEntry Entry
System.Resources.Extensions (1)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
1105public DictionaryEntry Entry
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\StatementContext.cs (1)
208public readonly DictionaryEntry Entry
32 references to Entry
Microsoft.Build.Framework (1)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.CodeAnalysis (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45readonly object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45readonly object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45readonly object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.CodeAnalysis.Scripting (1)
Hosting\ObjectFormatter\CommonObjectFormatter.Visitor.cs (1)
591var entry = enumerator.Entry;
Microsoft.CodeAnalysis.UnitTests (14)
Collections\ImmutableDictionaryBuilderTestBase.cs (7)
202Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 204Assert.Equal(enumerator.Entry, enumerator.Current); 205Assert.Equal(enumerator.Key, enumerator.Entry.Key); 206Assert.Equal(enumerator.Value, enumerator.Entry.Value); 213Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 220Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 230Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry);
Collections\ImmutableDictionaryTestBase.cs (7)
190Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 192Assert.Equal(enumerator.Entry, enumerator.Current); 193Assert.Equal(enumerator.Key, enumerator.Entry.Key); 194Assert.Equal(enumerator.Value, enumerator.Entry.Value); 201Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 208Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry); 218Assert.Equal(new DictionaryEntry(null!, 0), enumerator.Entry);
Microsoft.CodeAnalysis.Workspaces (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45readonly object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
45readonly object IEnumerator.Current => _returnType == ReturnType.DictionaryEntry ? ((IDictionaryEnumerator)this).Entry : Current;
Microsoft.Extensions.Configuration.EnvironmentVariables (2)
EnvironmentVariablesConfigurationProvider.cs (2)
71string key = (string)e.Entry.Key; 72string? value = (string?)e.Entry.Value;
PresentationFramework (1)
System\Windows\ResourceDictionary.cs (1)
2132return ((IDictionaryEnumerator)this).Entry;
System.ComponentModel.TypeConverter (4)
System\ComponentModel\ReflectTypeDescriptionProvider.cs (1)
1484DictionaryEntry de = e.Entry;
System\ComponentModel\TypeDescriptor.cs (3)
2332DictionaryEntry de = e.Entry; 2416DictionaryEntry de = e.Entry; 2477DictionaryEntry de = e.Entry;
System.Diagnostics.Process (1)
System\Diagnostics\ProcessStartInfo.cs (1)
108DictionaryEntry entry = e.Entry;
System.Net.Requests (1)
System\Net\TimerThread.cs (1)
140DictionaryEntry pair = e.Entry;
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\Json\XmlObjectSerializerWriteContextComplexJson.cs (1)
226DictionaryEntry entry = e.Entry;
System.Xaml (1)
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
749yield return enumerator.Entry;