9 references to True
System.Xaml (9)
System\Xaml\Schema\XamlTypeInvoker.cs (3)
228
_isPublic = type.IsVisible ? ThreeValuedBool.
True
: ThreeValuedBool.False;
230
return _isPublic == ThreeValuedBool.
True
;
292
if (s_securityFailureWithCtorDelegate == ThreeValuedBool.
True
)
System\Xaml\Schema\XamlValueConverter.cs (2)
64
_isPublic = (ConverterType is null || ConverterType.IsVisible) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
67
return _isPublic == ThreeValuedBool.
True
;
System\Xaml\XamlMember.cs (2)
199
_isNameValid = XamlName.IsValidXamlName(_name) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
201
return _isNameValid == ThreeValuedBool.
True
;
System\Xaml\XamlType.cs (2)
111
_isNameValid = XamlName.IsValidXamlName(_name) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
113
return _isNameValid == ThreeValuedBool.
True
;