9 references to True
System.Xaml (9)
System\Xaml\Schema\XamlTypeInvoker.cs (3)
235
_isPublic = type.IsVisible ? ThreeValuedBool.
True
: ThreeValuedBool.False;
238
return _isPublic == ThreeValuedBool.
True
;
303
if (s_securityFailureWithCtorDelegate == ThreeValuedBool.
True
)
System\Xaml\Schema\XamlValueConverter.cs (2)
63
_isPublic = (ConverterType is null || ConverterType.IsVisible) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
66
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)
112
_isNameValid = XamlName.IsValidXamlName(_name) ? ThreeValuedBool.
True
: ThreeValuedBool.False;
115
return _isNameValid == ThreeValuedBool.
True
;