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); 197ComAwareWeakReference.SetTarget(ref _taggedHandle, value, comInfo); 231_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; 145nint th = _taggedHandle & ~TracksResurrectionBit; 185nint th = _taggedHandle & ~TracksResurrectionBit; 225nint handle = _taggedHandle & ~HandleTagBits;