5 writes to _value
System.Xaml (5)
System\Xaml\Schema\TypeBits.cs (5)
66set { _value = value ? s_NotPresentSentinel : null; } 78object value = Volatile.Read(ref _value); 90set { _value = value is null ? s_NullSentinel : value; } 96Interlocked.CompareExchange(ref _value, newValue, null); 102Volatile.Write(ref _value, newValue);
3 references to _value
System.Xaml (3)
System\Xaml\Schema\TypeBits.cs (3)
65get { return ReferenceEquals(_value, s_NotPresentSentinel); } 71get { return !(_value is null); } 87object value = _value;