22 references to GetProperties
System.ComponentModel.TypeConverter (3)
System\ComponentModel\ComponentConverter.cs (1)
28return TypeDescriptor.GetProperties(value, attributes);
System\ComponentModel\ExpandableObjectConverter.cs (1)
28return TypeDescriptor.GetProperties(value, attributes);
System\ComponentModel\PropertyDescriptor.cs (1)
276return TypeDescriptor.GetProperties(instance, filter);
System.Windows.Forms (10)
System\Windows\Forms\ComponentModel\COM2Interop\COM2IDispatchConverter.cs (1)
62=> TypeDescriptor.GetProperties(value, attributes);
System\Windows\Forms\ComponentModel\COM2Interop\Com2PropertyDescriptor.Com2PropDescMainConverter.cs (1)
53PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(value, attributes);
System\Windows\Forms\Controls\Buttons\FlatButtonAppearanceConverter.cs (1)
27return TypeDescriptor.GetProperties(value, attributes);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (2)
49return TypeDescriptor.GetProperties(component, attributes); 57? TypeDescriptor.GetProperties(component, attributes)
System\Windows\Forms\DataBinding\ListBindingHelper.cs (4)
487return TypeDescriptor.GetProperties(target!, BrowsableAttributeList); 631pdc = TypeDescriptor.GetProperties(enumerable, BrowsableAttributeList); 639pdc = TypeDescriptor.GetProperties(instance, BrowsableAttributeList); 643pdc = TypeDescriptor.GetProperties(enumerable, BrowsableAttributeList);
System\Windows\Forms\Design\EventsTab.cs (1)
131var matchingComponentProperties = TypeDescriptor.GetProperties(component, specifiedAttributesPlusContent);
System.Windows.Forms.Design (3)
System\ComponentModel\Design\ReferenceService.cs (1)
47foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(reference, s_attributes))
System\ComponentModel\Design\Serialization\CodeDomSerializer.cs (1)
66PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance, s_deserializeFilter);
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
236return TypeDescriptor.GetProperties(instance, attributes);
System.Windows.Forms.Tests (6)
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (1)
240var propertyDescriptors = TypeDescriptor.GetProperties(value, s_visible);
System\Windows\Forms\ColumnHeaderConverterTests.cs (1)
154Assert.Equal(TypeDescriptor.GetProperties(item, null).Count, converter.GetProperties(null, item, null).Count);
System\Windows\Forms\ListViewItemConverterTests.cs (1)
307Assert.Equal(TypeDescriptor.GetProperties(item, null).Count, converter.GetProperties(null, item, null).Count);
System\Windows\Forms\ListViewSubItemConverterTests.cs (1)
120Assert.Equal(TypeDescriptor.GetProperties(item, null).Count, converter.GetProperties(null, item, null).Count);
System\Windows\Forms\PropertyGrid.PropertyTabCollectionTests.cs (2)
69public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) => TypeDescriptor.GetProperties(component, attributes); 71public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) => TypeDescriptor.GetProperties(component, attributes);