2 instantiations of KeyValue
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (2)
1474get { return new KeyValue<object, object>(_enumerator.Key, _enumerator.Value); } 1512return new KeyValue<K, V>(current.Key, current.Value);
6 references to KeyValue
dotnet-svcutil-lib (6)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (5)
1061itemType = typeof(KeyValue<object, object>); 1453internal class DictionaryEnumerator : IEnumerator<KeyValue<object, object>> 1472public KeyValue<object, object> Current 1488internal class GenericDictionaryEnumerator<K, V> : IEnumerator<KeyValue<K, V>> 1507public KeyValue<K, V> Current
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\Globals.cs (1)
821s_typeOfKeyValue = typeof(KeyValue<,>);