12 overrides of GetPropertiesSupported
System.ComponentModel.TypeConverter (10)
System\ComponentModel\ArrayConverter.cs (1)
61public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\ComponentConverter.cs (1)
35public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\Design\DesignerOptionService.cs (1)
437public override bool GetPropertiesSupported(ITypeDescriptorContext? cxt) => true;
System\ComponentModel\ExpandableObjectConverter.cs (1)
35public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\ComponentModel\MultilineStringConverter.cs (1)
42public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
System\ComponentModel\NullableConverter.cs (1)
177public override bool GetPropertiesSupported(ITypeDescriptorContext? context)
System\Drawing\PointConverter.cs (1)
121public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\RectangleConverter.cs (1)
127public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\SizeConverter.cs (1)
119public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System\Drawing\SizeFConverter.cs (1)
116public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => true;
System.Data.Common (2)
System\Data\DataTableTypeConverter.cs (1)
11public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
System\Data\PrimaryKeyTypeConverter.cs (1)
17public override bool GetPropertiesSupported(ITypeDescriptorContext? context) => false;
3 references to GetPropertiesSupported
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
181return UnderlyingTypeConverter.GetPropertiesSupported(context); 184return base.GetPropertiesSupported(context);
System\ComponentModel\TypeConverter.cs (1)
257public bool GetPropertiesSupported() => GetPropertiesSupported(null);