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