Base:
method
GetProperties
System.ComponentModel.TypeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext, System.Object, System.Attribute[])
4 overrides of GetProperties
ReachFramework (3)
Serialization\ColorTypeConverter.cs (1)
219GetProperties(
Serialization\FontTypeConverter.cs (1)
208GetProperties(
Serialization\ImageSourceTypeConverter.cs (1)
290GetProperties(
System.Windows.Forms (1)
System\Windows\Forms\Controls\Buttons\FlatButtonAppearanceConverter.cs (1)
17public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext? context, object value, Attribute[]? attributes)
5 references to GetProperties
System.Windows.Forms.Tests (5)
System\Windows\Forms\ColumnHeaderConverterTests.cs (1)
156Assert.Equal(TypeDescriptor.GetProperties(item, null).Count, converter.GetProperties(null, item, null).Count);
System\Windows\Forms\FlatButtonAppearanceConverterTests.cs (3)
38Action action = () => _converter.GetProperties(context: null, value: button, attributes: null); 49PropertyDescriptorCollection properties = _converter.GetProperties(context: null, button, attributes); 61PropertyDescriptorCollection properties = _converter.GetProperties(contextMock.Object, button, attributes: null);
System\Windows\Forms\ListViewItemConverterTests.cs (1)
309Assert.Equal(TypeDescriptor.GetProperties(item, null).Count, converter.GetProperties(null, item, null).Count);