1 implementation of IMapView
mscorlib (1)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (1)
31
internal sealed class ConstantSplittableMap<TKey, TValue> :
IMapView
<TKey, TValue>
25 references to IMapView
mscorlib (25)
system\internal.cs (5)
244
WinRT_IReadOnlyDictionary<string, int>(null, null, null, null); typeof(
IMapView
<string, int>).ToString();
245
WinRT_IReadOnlyDictionary<string, string>(null, null, null, null); typeof(
IMapView
<string, string>).ToString();
246
WinRT_IReadOnlyDictionary<string, object>(null, null, null, null); typeof(
IMapView
<string, object>).ToString();
247
WinRT_IReadOnlyDictionary<object, object>(null, null, null, null); typeof(
IMapView
<object, object>).ToString();
342
static void WinRT_IReadOnlyDictionary<K, V>(IMapViewToIReadOnlyDictionaryAdapter mapToDictionaryAdapter, IReadOnlyDictionaryToIMapViewAdapter dictionaryToMapAdapter,
IMapView
<K, V> mapView, MapViewToReadOnlyCollectionAdapter mapViewToReadOnlyCollectionAdapter)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (3)
61
internal ConstantSplittableMap(
IMapView
<TKey, TValue> data)
172
public void Split(out
IMapView
<TKey, TValue> firstPartition, out
IMapView
<TKey, TValue> secondPartition)
system\runtime\interopservices\windowsruntime\imap.cs (2)
49
void Split(out
IMapView
<K, V> first, out
IMapView
<K, V> second);
system\runtime\interopservices\windowsruntime\imapviewtoireadonlydictionaryadapter.cs (11)
45
IMapView
<K, V> _this = JitHelpers.UnsafeCast<
IMapView
<K, V>>(this);
53
IMapView
<K, V> _this = JitHelpers.UnsafeCast<
IMapView
<K, V>>(this);
62
IMapView
<K, V> _this = JitHelpers.UnsafeCast<
IMapView
<K, V>>(this);
75
IMapView
<K, V> _this = JitHelpers.UnsafeCast<
IMapView
<K, V>>(this);
86
IMapView
<K, V> _this = JitHelpers.UnsafeCast<
IMapView
<K, V>>(this);
114
private static V Lookup<K, V>(
IMapView
<K, V> _this, K key)
system\runtime\interopservices\windowsruntime\ireadonlydictionarytoimapviewadapter.cs (2)
73
internal void Split<K, V>(out
IMapView
<K, V> first, out
IMapView
<K, V> second)
system\runtime\interopservices\windowsruntime\mapviewtoreadonlycollectionadapter.cs (2)
45
IMapView
<K, V> _this_map = _this as
IMapView
<K, V>;