24 references to GetProperties
System (3)
compmod\system\componentmodel\ComponentConverter.cs (1)
42return TypeDescriptor.GetProperties(value, attributes);
compmod\system\componentmodel\ExpandableObjectConverter.cs (1)
38return TypeDescriptor.GetProperties(value, attributes);
compmod\system\componentmodel\PropertyDescriptor.cs (1)
272return TypeDescriptor.GetProperties(instance, filter);
System.Web (2)
UI\WebControls\BaseValidator.cs (1)
544return TypeDescriptor.GetProperties(component, null)[valProp.Name];
UI\WebParts\PropertyGridEditorPart.cs (1)
250PropertyDescriptorCollection propDescs = TypeDescriptor.GetProperties(editableObject, FilterAttributes);
System.Web.Mobile (1)
UI\MobileControls\Design\MobileControlPersister.cs (1)
499properties = TypeDescriptor.GetProperties(component,
System.Windows.Forms (12)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IDispatchConverter.cs (1)
90return TypeDescriptor.GetProperties(value, attributes);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
1391PropertyDescriptorCollection props = TypeDescriptor.GetProperties(value, attributes);
winforms\Managed\System\WinForms\Control.cs (2)
17308PropertyDescriptorCollection props = TypeDescriptor.GetProperties(control, 18027PropertyDescriptorCollection props = TypeDescriptor.GetProperties(control,
winforms\Managed\System\WinForms\Design\EventsTab.cs (1)
156PropertyDescriptorCollection namespaceProperties = TypeDescriptor.GetProperties(component, attributesPlusNamespace);
winforms\Managed\System\WinForms\FlatButtonAppearance.cs (1)
196return TypeDescriptor.GetProperties(value, attributes);
winforms\Managed\System\WinForms\ListBindingHelper.cs (4)
496pdc = TypeDescriptor.GetProperties(target, BrowsableAttributeList); 628pdc = TypeDescriptor.GetProperties(enumerable, BrowsableAttributeList); 634pdc = TypeDescriptor.GetProperties(instance, BrowsableAttributeList); 637pdc = TypeDescriptor.GetProperties(enumerable, BrowsableAttributeList);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertiesTab.cs (2)
88return TypeDescriptor.GetProperties(component, attributes); 93return TypeDescriptor.GetProperties(component, attributes);
System.Workflow.ComponentModel (5)
AuthoringOM\Design\ActivityDesigner.cs (1)
743PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(Activity, new Attribute[] { new BrowsableAttribute(true) });
AuthoringOM\Design\DesignerHelpers.cs (1)
1338PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(component, new Attribute[] { BrowsableAttribute.Yes });
AuthoringOM\Design\ReferenceService.cs (1)
41foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(reference, Attributes))
AuthoringOM\Design\TypeConverters.cs (2)
138props = PropertyDescriptorFilter.FilterProperties(component.Site, value, TypeDescriptor.GetProperties(value, new Attribute[] { BrowsableAttribute.Yes })); 274PropertyDescriptorCollection props = TypeDescriptor.GetProperties(value, new Attribute[] { BrowsableAttribute.Yes });
System.WorkflowServices (1)
System\Workflow\Activities\WorkflowServiceAttributesTypeConverter.cs (1)
16PropertyDescriptorCollection subProperties = TypeDescriptor.GetProperties(value, new Attribute[] { new BrowsableAttribute(true) });