5 writes to _value
System.Xaml (5)
System\Xaml\Schema\TypeBits.cs (5)
67set { _value = value ? s_NotPresentSentinel : null; } 79object value = Volatile.Read(ref _value); 91set { _value = value is null ? s_NullSentinel : value; } 97Interlocked.CompareExchange(ref _value, newValue, null); 103Volatile.Write(ref _value, newValue);
3 references to _value
System.Xaml (3)
System\Xaml\Schema\TypeBits.cs (3)
66get { return ReferenceEquals(_value, s_NotPresentSentinel); } 72get { return !(_value is null); } 88object value = _value;