2 writes to _htDelegates
PresentationCore (2)
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (2)
214
ueh.
_htDelegates
= (Hashtable)_htDelegates.Clone();
226
_htDelegates
= new Hashtable();
13 references to _htDelegates
PresentationCore (13)
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (13)
145
if (
_htDelegates
[handler] == null)
147
_htDelegates
.Add(handler, 1);
151
int refCount = (int)
_htDelegates
[handler] + 1;
152
_htDelegates
[handler] = refCount;
170
if (
_htDelegates
[handler] != null)
172
int refCount = (int)
_htDelegates
[handler];
176
_htDelegates
.Remove(handler);
180
_htDelegates
[handler] = refCount - 1;
195
if (
_htDelegates
!= null)
197
Hashtable htDelegates = (Hashtable)
_htDelegates
.Clone();
212
if (
_htDelegates
!= null)
214
ueh._htDelegates = (Hashtable)
_htDelegates
.Clone();
224
if (
_htDelegates
== null)