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