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