4 writes to _taggedHandle
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\WeakReference.cs (4)
84_taggedHandle = trackResurrection ? 92ComAwareWeakReference.SetComInfoInConstructor(ref _taggedHandle, comInfo); 205ComAwareWeakReference.SetTarget(ref _taggedHandle, value, comInfo); 239_taggedHandle &= TracksResurrectionBit;
5 references to _taggedHandle
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\WeakReference.cs (5)
99private bool IsTrackResurrection() => (_taggedHandle & TracksResurrectionBit) != 0; 106nint th = _taggedHandle; 149nint th = _taggedHandle & ~TracksResurrectionBit; 193nint th = _taggedHandle & ~TracksResurrectionBit; 233nint handle = _taggedHandle & ~HandleTagBits;