16 references to GetProperties
PresentationFramework (6)
MS\Internal\Data\PropertyPathWorker.cs (1)
1494PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(item);
MS\Internal\Data\ValueTable.cs (1)
223pd = TypeDescriptor.GetProperties(item)[name];
System\Windows\Data\CollectionView.cs (1)
1481properties = TypeDescriptor.GetProperties(item);
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
107foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(_instance))
System\Windows\PropertyPath.cs (2)
609accessor = TypeDescriptor.GetProperties(item)[propertyName]; 630accessor = TypeDescriptor.GetProperties(item)[propertyName];
PresentationFramework-SystemData (1)
SystemDataExtension.cs (1)
70PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(list[0]);
PresentationFramework-SystemXmlLinq (1)
SystemXmlLinqExtension.cs (1)
22PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(xelement);
System.ComponentModel.TypeConverter (3)
System\ComponentModel\ComponentResourceManager.cs (1)
208static PropertyDescriptorCollection TypeDescriptorGetProperties(object value) => TypeDescriptor.GetProperties(value);
System\ComponentModel\Design\DesignerOptionService.cs (1)
183PropertyDescriptorCollection props = TypeDescriptor.GetProperties(_value);
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (1)
300return TypeDescriptor.GetProperties(instance)[attr.Name];
System.Data.Common (5)
System\Data\xmlsaver.cs (1)
117PropertyDescriptorCollection pds = TypeDescriptor.GetProperties(instance);
System\Data\XMLSchema.cs (4)
42PropertyDescriptor? pd = TypeDescriptor.GetProperties(instance)[name]; 289PropertyDescriptor? pd = TypeDescriptor.GetProperties(instance)[name]; 331object? val = TypeDescriptor.GetProperties(instance)["ExtendedProperties"]!.GetValue(instance); 402object? val = TypeDescriptor.GetProperties(instance)["ExtendedProperties"]!.GetValue(instance);