4 writes to _set
PresentationFramework (4)
src\Framework\System\Windows\Controls\Primitives\Selector.cs (4)
2729
_set
= new Dictionary<ItemInfo, ItemInfo>(capacity, equalityComparer);
2740
_set
= new Dictionary<ItemInfo, ItemInfo>(collection._set, _equalityComparer);
2917
_set
= new Dictionary<ItemInfo, ItemInfo>(_list.Count);
2925
_set
= null;
15 references to _set
PresentationFramework (15)
src\Framework\System\Windows\Controls\Primitives\Selector.cs (15)
2740
_set = new Dictionary<ItemInfo, ItemInfo>(collection.
_set
, _equalityComparer);
2754
if (
_set
!= null)
2756
_set
.Add(info, info);
2768
if (
_set
!= null)
2771
if (
_set
.TryGetValue(e, out realInfo))
2775
_set
.Remove(e); // remove from hash table
2817
if (
_set
!= null)
2819
return
_set
.ContainsKey(e);
2838
if (
_set
!= null)
2840
_set
.Clear();
2912
get { return
_set
!= null; }
2915
if (value == true &&
_set
== null)
2920
_set
.Add(_list[i], _list[i]);
2934
if (
_set
!= null)
2936
if (!
_set
.TryGetValue(info, out result))