75 references to DictionaryEntry
mscorlib (46)
system\cfgparser.cs (2)
543m_attributes.Add(new DictionaryEntry(key, value)); 549m_attributes[index] = new DictionaryEntry(key, value);
system\Collections\Concurrent\ConcurrentDictionary.cs (2)
752array[index] = new DictionaryEntry(current.m_key, current.m_value); 2160get { return new DictionaryEntry(m_enumerator.Current.Key, m_enumerator.Current.Value); }
system\collections\generic\dictionary.cs (3)
558dictEntryArray[index++] = new DictionaryEntry(entries[i].key, entries[i].value); 751return new System.Collections.DictionaryEntry(current.Key, current.Value); 773return new DictionaryEntry(current.Key, current.Value);
system\collections\hashtable.cs (3)
582DictionaryEntry entry = new DictionaryEntry(keyv,lbuckets[i].val); 1597return new DictionaryEntry(currentKey, currentValue); 1611return new DictionaryEntry(currentKey, currentValue);
system\collections\listdictionaryinternal.cs (2)
212array.SetValue(new DictionaryEntry(node.key, node.value), index); 275return new DictionaryEntry(current.key, current.value);
system\collections\objectmodel\readonlydictionary.cs (2)
260dictEntryArray[index++] = new DictionaryEntry(item.Key, item.Value); 311get { return new DictionaryEntry(m_enumerator.Current.Key, m_enumerator.Current.Value); }
system\collections\sortedlist.cs (3)
339DictionaryEntry entry = new DictionaryEntry(keys[i],values[i]); 789return new DictionaryEntry(key, value); 802return new DictionaryEntry(key, value);
system\resources\resourcereader.cs (1)
1417return new DictionaryEntry(key, value);
system\runtime\remoting\ichannel.cs (4)
360_extraData[0] = new DictionaryEntry(key, value); 369newList[co] = new DictionaryEntry(key, value); // set last value 463_headerList.Add(new DictionaryEntry(key, value)); 775public DictionaryEntry Entry { get { return new DictionaryEntry(Key, Value); } }
system\runtime\remoting\message.cs (1)
2302return new DictionaryEntry(Key, Value);
system\runtime\remoting\remotingconfigparser.cs (23)
445node.Attributes.Add(new DictionaryEntry("ref", "http client")); 446node.Attributes.Add(new DictionaryEntry("displayName", "http client (delay loaded)")); 447node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 451node.Attributes.Add(new DictionaryEntry("ref", "tcp client")); 452node.Attributes.Add(new DictionaryEntry("displayName", "tcp client (delay loaded)")); 453node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 457node.Attributes.Add(new DictionaryEntry("ref", "ipc client")); 458node.Attributes.Add(new DictionaryEntry("displayName", "ipc client (delay loaded)")); 459node.Attributes.Add(new DictionaryEntry("delayLoadAsClientChannel", "true")); 479node.Attributes.Add(new DictionaryEntry("id", "http")); 484node.Attributes.Add(new DictionaryEntry("id", "http client")); 489node.Attributes.Add(new DictionaryEntry("id", "http server")); 494node.Attributes.Add(new DictionaryEntry("id", "tcp")); 499node.Attributes.Add(new DictionaryEntry("id", "tcp client")); 504node.Attributes.Add(new DictionaryEntry("id", "tcp server")); 509node.Attributes.Add(new DictionaryEntry("id", "ipc")); 514node.Attributes.Add(new DictionaryEntry("id", "ipc client")); 519node.Attributes.Add(new DictionaryEntry("id", "ipc server")); 543node.Attributes.Add(new DictionaryEntry("id", "soap")); 548node.Attributes.Add(new DictionaryEntry("id", "binary")); 556node.Attributes.Add(new DictionaryEntry("id", "soap")); 561node.Attributes.Add(new DictionaryEntry("id", "binary")); 566node.Attributes.Add(new DictionaryEntry("id", "wsdl"));
PresentationCore (7)
Core\CSharp\System\Windows\Media\CharacterMetricsDictionary.cs (4)
214typedArray[index++] = new SC.DictionaryEntry(item.Key, item.Value); 230array.SetValue(new SC.DictionaryEntry(item.Key, item.Value), index++); 586return new SC.DictionaryEntry(entry.Key, entry.Value); 612return new SC.DictionaryEntry(entry.Key, entry.Value);
Core\CSharp\System\Windows\Media\CultureSpecificStringDictionary.cs (3)
180typedArray[index++] = new SC.DictionaryEntry(item.Key, item.Value); 196array.SetValue(new SC.DictionaryEntry(item.Key, item.Value), index++); 428return new SC.DictionaryEntry(entry.Key, entry.Value);
PresentationFramework (2)
src\Framework\System\Windows\Markup\Localizer\BamlLocalizationDictionary.cs (1)
326DictionaryEntry entry = new DictionaryEntry(pair.Key, pair.Value);
src\Framework\System\Windows\ResourceDictionary.cs (1)
2140return new DictionaryEntry(key, value);
System (13)
compmod\system\collections\generic\sorteddictionary.cs (2)
404return new DictionaryEntry(Current.Key, Current.Value); 438return new DictionaryEntry(Current.Key, Current.Value);
compmod\system\collections\generic\sortedlist.cs (2)
747return new DictionaryEntry(key, value); 764return new System.Collections.DictionaryEntry(key, value);
compmod\system\collections\specialized\listdictionary.cs (2)
237array.SetValue(new DictionaryEntry(node.key, node.value), index); 306return new DictionaryEntry(current.key, current.value);
compmod\system\collections\specialized\ordereddictionary.cs (5)
167objectsArray[index] = new DictionaryEntry(key, value); 185objectsArray[IndexOfKey(key)] = new DictionaryEntry(key, value); 210objectsArray.Add(new DictionaryEntry(key, value)); 273objectsArray.Insert(index, new DictionaryEntry(key, value)); 416return new DictionaryEntry(((DictionaryEntry)arrayEnumerator.Current).Key, ((DictionaryEntry)arrayEnumerator.Current).Value);
compmod\system\componentmodel\PropertyDescriptorCollection.cs (1)
703return new DictionaryEntry(curProp.Name, curProp);
net\System\Net\_SpnDictionary.cs (1)
178yield return new DictionaryEntry(key, spnToken.Spn);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemDictionary.cs (1)
447get { return new DictionaryEntry(_real.Current.Key, _real.Current.Value); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Model\ModelItemDictionary.cs (1)
447get { return new DictionaryEntry(_real.Current.Key, _real.Current.Value); }
System.Runtime.Remoting (2)
channels\core\basetransportheaders.cs (1)
309new DictionaryEntry(
channels\http\combinedhttpchannel.cs (1)
324public DictionaryEntry Entry { get { return new DictionaryEntry(Key, Value); } }
System.Web (1)
httpstaticobjectscollection.cs (1)
331return new DictionaryEntry(_enum.Key, this.Value);
System.Xml (2)
System\Xml\Schema\XmlSchemaObjectTable.cs (2)
274return new DictionaryEntry(currentKey, currentValue); 316return new DictionaryEntry(currentKey, currentValue);