2 writes to _htDelegates
PresentationCore (2)
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (2)
103
ueh.
_htDelegates
= (Hashtable)_htDelegates.Clone();
115
_htDelegates
= new Hashtable();
13 references to _htDelegates
PresentationCore (13)
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (13)
34
if (
_htDelegates
[handler] == null)
36
_htDelegates
.Add(handler, 1);
40
int refCount = (int)
_htDelegates
[handler] + 1;
41
_htDelegates
[handler] = refCount;
59
if (
_htDelegates
[handler] != null)
61
int refCount = (int)
_htDelegates
[handler];
65
_htDelegates
.Remove(handler);
69
_htDelegates
[handler] = refCount - 1;
84
if (
_htDelegates
!= null)
86
Hashtable htDelegates = (Hashtable)
_htDelegates
.Clone();
101
if (
_htDelegates
!= null)
103
ueh._htDelegates = (Hashtable)
_htDelegates
.Clone();
113
if (
_htDelegates
== null)