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