39 implementations of Value
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObjectTable.cs (1)
402public object Value
Microsoft.Build (1)
Collections\ArrayDictionary.cs (1)
247object IDictionaryEnumerator.Value => _dictionary.values[_position];
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskThatReturnsDictionaryTaskItem.cs (1)
198public object Value => _values[_index];
Microsoft.Build.Framework (2)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51object? IDictionaryEnumerator.Value => Current.Value;
SegmentedDictionary`2.cs (1)
1242object? IDictionaryEnumerator.Value
Microsoft.CodeAnalysis (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51readonly object? IDictionaryEnumerator.Value => Current.Value;
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1276readonly object? IDictionaryEnumerator.Value
Microsoft.CodeAnalysis.CodeStyle (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51readonly object? IDictionaryEnumerator.Value => Current.Value;
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1276readonly object? IDictionaryEnumerator.Value
Microsoft.CodeAnalysis.Collections.Package (2)
ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51readonly object? IDictionaryEnumerator.Value => Current.Value;
SegmentedDictionary`2.cs (1)
1276readonly object? IDictionaryEnumerator.Value
Microsoft.CodeAnalysis.Scripting.TestUtilities (1)
ObjectFormatterFixtures\Custom.cs (1)
484public object Value
Microsoft.CodeAnalysis.Workspaces (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51readonly object? IDictionaryEnumerator.Value => Current.Value;
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1276readonly object? IDictionaryEnumerator.Value
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
src\Dependencies\Collections\ImmutableSegmentedDictionary`2+Enumerator.cs (1)
51readonly object? IDictionaryEnumerator.Value => Current.Value;
src\Dependencies\Collections\SegmentedDictionary`2.cs (1)
1276readonly object? IDictionaryEnumerator.Value
PresentationCore (2)
System\Windows\Media\CharacterMetricsDictionary.cs (1)
597object SC.IDictionaryEnumerator.Value
System\Windows\Media\CultureSpecificStringDictionary.cs (1)
416public object Value
PresentationFramework (2)
System\Windows\Markup\Localizer\BamlLocalizationDictionary.cs (1)
99object IDictionaryEnumerator.Value
System\Windows\ResourceDictionary.cs (1)
2168object IDictionaryEnumerator.Value
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (1)
1420readonly object? IDictionaryEnumerator.Value => Current.Value;
System\Collections\Generic\SortedDictionary.cs (1)
488object? IDictionaryEnumerator.Value
System\Collections\Generic\SortedList.cs (1)
845object? IDictionaryEnumerator.Value
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2330public object? Value => _enumerator.Current.Value;
System.Collections.Immutable (1)
System\Collections\Immutable\DictionaryEnumerator.cs (1)
29public object? Value
System.Collections.NonGeneric (1)
System\Collections\SortedList.cs (1)
866public object? Value
System.Collections.Specialized (2)
System\Collections\Specialized\ListDictionary.cs (1)
310public object? Value
System\Collections\Specialized\OrderedDictionary.cs (1)
505public object? Value
System.ComponentModel.TypeConverter (1)
System\ComponentModel\PropertyDescriptorCollection.cs (1)
612public object Value => _owner[_index].Name;
System.Configuration.ConfigurationManager (1)
System\Configuration\ConfigurationElementCollection.cs (1)
1299object IDictionaryEnumerator.Value => _current.Value;
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
1869object? IDictionaryEnumerator.Value
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
1475public object? Value
src\libraries\System.Private.CoreLib\src\System\Collections\ListDictionaryInternal.cs (1)
248public object? Value
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyDictionary.cs (1)
232public object? Value => _enumerator.Current.Value;
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
1142public object? Value
src\System\Collections\EmptyReadOnlyDictionaryInternal.cs (1)
133public object? Value => throw new InvalidOperationException(SR.InvalidOperation_EnumOpCantHappen);
System.Private.Xml (1)
System\Xml\Schema\XmlSchemaObjectTable.cs (1)
372public object? Value
System.Resources.Extensions (1)
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceReader.cs (1)
1142public object? Value
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\StatementContext.cs (1)
234public readonly object? Value => Entry.Value;
65 references to Value
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
605SchemaAttDef attdef = (SchemaAttDef)attrDefs.Value; 1625SchemaAttDef attdef = (SchemaAttDef)attrDefs.Value;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
666SchemaElementDecl elementDecl = (SchemaElementDecl)elementDecls.Value; 672SchemaAttDef attdef = (SchemaAttDef)attDefs.Value;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaCollection.cs (3)
207XmlSchemaCollectionNode node = (XmlSchemaCollectionNode)enumerator.Value; 502XmlSchemaCollectionNode n = (XmlSchemaCollectionNode)_enumerator.Value; 514XmlSchemaCollectionNode n = (XmlSchemaCollectionNode)_enumerator.Value;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (1)
1474get { return new KeyValue<object, object>(_enumerator.Key, _enumerator.Value); }
Microsoft.Build.Tasks.UnitTests (1)
ResourceHandling\GenerateResource_Tests.cs (1)
3643object value = resEnum.Value;
Microsoft.CodeAnalysis.UnitTests (16)
Collections\ImmutableDictionaryBuilderTestBase.cs (8)
201Assert.Equal(0, enumerator.Value); 206Assert.Equal(enumerator.Value, enumerator.Entry.Value); 208Assert.Equal(1, enumerator.Value); 212Assert.Equal(0, enumerator.Value); 219Assert.Equal(0, enumerator.Value); 223Assert.Equal(enumerator.Value, ((DictionaryEntry)enumerator.Current).Value); 225Assert.Equal(1, enumerator.Value); 229Assert.Equal(0, enumerator.Value);
Collections\ImmutableDictionaryTestBase.cs (8)
189Assert.Equal(0, enumerator.Value); 194Assert.Equal(enumerator.Value, enumerator.Entry.Value); 196Assert.Equal(1, enumerator.Value); 200Assert.Equal(0, enumerator.Value); 207Assert.Equal(0, enumerator.Value); 211Assert.Equal(enumerator.Value, ((DictionaryEntry)enumerator.Current).Value); 213Assert.Equal(1, enumerator.Value); 217Assert.Equal(0, enumerator.Value);
PresentationCore (1)
System\Windows\GlobalEventManager.cs (1)
132FrugalObjectList<RoutedEvent> ownerRoutedEventList = (FrugalObjectList<RoutedEvent>)htEnumerator.Value;
PresentationFramework (2)
MS\Internal\Data\StaticPropertyChangedEventManager.cs (1)
500PropertyRecord pr = (PropertyRecord)ide.Value;
MS\Internal\Data\ValueChangedEventManager.cs (1)
198ValueChangedRecord record = (ValueChangedRecord)ide.Value;
System.Collections.Specialized (1)
System\Collections\Specialized\HybridDictionary.cs (1)
134newTable.Add(en.Key, en.Value);
System.Configuration.ConfigurationManager (3)
System\Diagnostics\ListenerElementsCollection.cs (1)
254string xmlValue = (string)e.Value;
System\Diagnostics\SourceElementsCollection.cs (1)
105string xmlValue = (string)e.Value;
System\Diagnostics\SwitchElementsCollection.cs (1)
69string xmlValue = (string)e.Value;
System.Data.Common (1)
System\Data\Merger.cs (1)
621dst[srcDE.Key] = srcDE.Value;
System.Net.Primitives (4)
System\Net\CookieContainer.cs (4)
520pathList = (PathList)enumerator.Value!; 527CookieCollection cc = (CookieCollection)e.Value!; 778PathList list = (PathList)lists.Value!; 784result.Add((CookieCollection)collections.Value!);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (2)
354Add(e.Key, e.Value); 364Add(e.Key, e.Value);
src\libraries\System.Private.CoreLib\src\System\Resources\ResourceSet.cs (1)
194_table.Add(en.Key, en.Value);
src\libraries\System.Private.CoreLib\src\System\Security\SecurityElement.cs (1)
112string? attrValue = (string?)enumerator.Value;
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\CollectionDataContract.cs (1)
1606public KeyValue<object, object?> Current => new KeyValue<object, object?>(_enumerator.Key, _enumerator.Value);
System.Private.Xml (7)
System\Xml\Schema\XmlSchemaCollection.cs (3)
184XmlSchemaCollectionNode node = (XmlSchemaCollectionNode)enumerator.Value!; 433XmlSchemaCollectionNode? n = (XmlSchemaCollectionNode?)_enumerator.Value; 445XmlSchemaCollectionNode? n = (XmlSchemaCollectionNode?)_enumerator.Value;
System\Xml\Xsl\XsltOld\Stylesheet.cs (4)
220Debug.Assert(enumerator.Value is TemplateManager); 221TemplateManager manager = (TemplateManager)enumerator.Value; 251TemplateManager manager = (TemplateManager)enumerator.Value!; 267TemplateAction template = (TemplateAction)enumerator.Value!;
System.Text.Json (1)
System\Text\Json\Serialization\Converters\Collection\IDictionaryConverter.cs (1)
87object? element = enumerator.Value;
System.Text.RegularExpressions (2)
System\Text\RegularExpressions\Regex.cs (1)
359result[(int)de.Value!] = (int)de.Key;
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (1)
218Ldc((int)en.Value!);
System.Transactions.Local (1)
System\Transactions\TransactionManager.cs (1)
71WeakReference weakRef = (WeakReference)e.Value!;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
385object? resourceObject = de.Value;
System\ComponentModel\Design\Serialization\ResourceCodeDomSerializer.SerializationResourceManager.cs (2)
249object? value = resEnum.Value; 335_metadata[(string)de.Key] = de.Value;
System.Windows.Forms.Design.Tests (1)
System\Resources\Tools\StronglyTypedResourceBuilderTests.cs (1)
660resourceWriter.AddResource((string)resources.Key, resources.Value);
System.Windows.Forms.Tests (5)
System\Resources\ResXResourceReaderTests.cs (4)
29object value = enumerator.Value; 116actualData.Add(enumerator.Key, enumerator.Value); 143actualData.Add(enumerator.Key, enumerator.Value); 170actualMetadata.Add(metadataEnumerator.Key, metadataEnumerator.Value);
System\Resources\ResXResourceWriterTests.cs (1)
36dictionary.Add(dictionaryEnumerator.Key, dictionaryEnumerator.Value);
System.Xaml (2)
System\Xaml\NameScope.cs (1)
279return new KeyValuePair<string, object>((string)_enumerator.Key, _enumerator.Value);
System\Xaml\NameScopeDictionary.cs (1)
173return new KeyValuePair<string, object>((string)dictionaryEnumerator.Key, dictionaryEnumerator.Value);
VBCSCompiler.UnitTests (1)
NamedPipeTestUtil.cs (1)
89var sharedServer = e.Value!;