10 overrides of GetProperties
System.ComponentModel.TypeConverter (10)
System\ComponentModel\CollectionConverter.cs (1)
34public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\ComponentModel\ComponentConverter.cs (1)
26public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\ComponentModel\Design\DesignerOptionService.cs (1)
440public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? cxt, object value, Attribute[]? attributes)
System\ComponentModel\ExpandableObjectConverter.cs (1)
26public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\ComponentModel\MultilineStringConverter.cs (1)
34public override PropertyDescriptorCollection? GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\ComponentModel\NullableConverter.cs (1)
163public override PropertyDescriptorCollection? GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\Drawing\PointConverter.cs (1)
115public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object? value, Attribute[]? attributes)
System\Drawing\RectangleConverter.cs (1)
121public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object? value, Attribute[]? attributes)
System\Drawing\SizeConverter.cs (1)
113public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
System\Drawing\SizeFConverter.cs (1)
110public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
3 references to GetProperties
System.ComponentModel.TypeConverter (3)
System\ComponentModel\NullableConverter.cs (2)
168return UnderlyingTypeConverter.GetProperties(context, unwrappedValue, attributes); 171return base.GetProperties(context, value, attributes);
System\ComponentModel\TypeConverter.cs (1)
239return GetProperties(context, value, new Attribute[] { BrowsableAttribute.Yes });