25 references to ThreeValuedBool
System.Xaml (25)
System\Xaml\Schema\XamlTypeInvoker.cs (10)
24
private
ThreeValuedBool
_isPublic;
233
if (_isPublic ==
ThreeValuedBool
.NotSet)
236
_isPublic = type.IsVisible ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
239
return _isPublic ==
ThreeValuedBool
.True;
258
private static
ThreeValuedBool
s_securityFailureWithCtorDelegate;
298
if (s_securityFailureWithCtorDelegate ==
ThreeValuedBool
.NotSet)
301
ThreeValuedBool
.False;
304
if (s_securityFailureWithCtorDelegate ==
ThreeValuedBool
.True)
324
type._isPublic =
ThreeValuedBool
.False;
System\Xaml\Schema\XamlValueConverter.cs (5)
17
private
ThreeValuedBool
_isPublic;
62
if (_isPublic ==
ThreeValuedBool
.NotSet)
64
_isPublic = (ConverterType is null || ConverterType.IsVisible) ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
67
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)
37
ThreeValuedBool
_isNameValid;
111
if (_isNameValid ==
ThreeValuedBool
.NotSet)
113
_isNameValid = XamlName.IsValidXamlName(_name) ?
ThreeValuedBool
.True :
ThreeValuedBool
.False;
116
return _isNameValid ==
ThreeValuedBool
.True;