25 references to ThreeValuedBool
System.Xaml (25)
System\Xaml\Schema\XamlTypeInvoker.cs (10)
23
private
ThreeValuedBool
_isPublic;
232
if (_isPublic ==
ThreeValuedBool
.NotSet)
235
_isPublic = type.IsVisible ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
238
return _isPublic ==
ThreeValuedBool
.True;
257
private static
ThreeValuedBool
s_securityFailureWithCtorDelegate;
297
if (s_securityFailureWithCtorDelegate ==
ThreeValuedBool
.NotSet)
300
ThreeValuedBool
.False;
303
if (s_securityFailureWithCtorDelegate ==
ThreeValuedBool
.True)
323
type._isPublic =
ThreeValuedBool
.False;
System\Xaml\Schema\XamlValueConverter.cs (5)
16
private
ThreeValuedBool
_isPublic;
61
if (_isPublic ==
ThreeValuedBool
.NotSet)
63
_isPublic = (ConverterType is null || ConverterType.IsVisible) ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
66
return _isPublic ==
ThreeValuedBool
.True;
System\Xaml\XamlMember.cs (5)
24
private
ThreeValuedBool
_isNameValid;
199
if (_isNameValid ==
ThreeValuedBool
.NotSet)
201
_isNameValid = XamlName.IsValidXamlName(_name) ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
204
return _isNameValid ==
ThreeValuedBool
.True;
System\Xaml\XamlType.cs (5)
36
private
ThreeValuedBool
_isNameValid;
110
if (_isNameValid ==
ThreeValuedBool
.NotSet)
112
_isNameValid = XamlName.IsValidXamlName(_name) ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
115
return _isNameValid ==
ThreeValuedBool
.True;