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