2 instantiations of KeyValue
System.Runtime.Serialization (2)
System\Runtime\Serialization\CollectionDataContract.cs (2)
1465get { return new KeyValue<object, object>(enumerator.Key, enumerator.Value); } 1502return new KeyValue<K, V>(current.Key, current.Value);
8 references to KeyValue
System.Runtime.Serialization (8)
System\Runtime\Serialization\CollectionDataContract.cs (5)
975itemType = typeof(KeyValue<object, object>); 1445public class DictionaryEnumerator : IEnumerator<KeyValue<object, object>> 1463public KeyValue<object, object> Current 1479public class GenericDictionaryEnumerator<K, V> : IEnumerator<KeyValue<K, V>> 1497public KeyValue<K, V> Current
System\Runtime\Serialization\Globals.cs (1)
986typeOfKeyValue = typeof(KeyValue<,>);
System\Runtime\Serialization\Json\JsonDataContract.cs (1)
321&& collectionDataContract.ItemType.GetGenericTypeDefinition() == typeof(KeyValue<,>))
System\Runtime\Serialization\Json\XmlObjectSerializerWriteContextComplexJson.cs (1)
396&& collectionContract.ItemType.GetGenericTypeDefinition() == typeof(KeyValue<,>))