9 references to True
System.Xaml (9)
System\Xaml\Schema\XamlTypeInvoker.cs (3)
236
_isPublic = type.IsVisible ? ThreeValuedBool.
True
: ThreeValuedBool.False;
239
return _isPublic == ThreeValuedBool.
True
;
304
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)
201
_isNameValid = XamlName.IsValidXamlName(_name) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
204
return _isNameValid == ThreeValuedBool.
True
;
System\Xaml\XamlType.cs (2)
113
_isNameValid = XamlName.IsValidXamlName(_name) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
116
return _isNameValid == ThreeValuedBool.
True
;