17 implementations of GetProperties
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
245public virtual PropertyDescriptorCollection GetProperties(Attribute[]? attributes)
System\ComponentModel\TypeDescriptor.cs (4)
2860PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) 3199PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) 3720PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) 4147public PropertyDescriptorCollection GetProperties(Attribute[]? attributes)
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
362PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) =>
System\Data\Common\DbConnectionStringBuilder.cs (1)
632PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes)
System\Data\Common\DbDataRecord.cs (1)
101PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) =>
System\Data\DataRowView.cs (1)
257PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) =>
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
109PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) =>
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2697PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes)
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
58PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) => _handler.GetProperties(_instance);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
35PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) => PropertyDescriptorCollection.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1299PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attributes) => _properties;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1266PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[]? attrs)
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
134public PropertyDescriptorCollection GetProperties(Attribute[]? attributes) => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
896public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
18 references to GetProperties
System.ComponentModel.TypeConverter (9)
System\ComponentModel\CustomTypeDescriptor.cs (1)
249return _parent.GetProperties(attributes);
System\ComponentModel\TypeDescriptor.cs (8)
1476results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 1482ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 1495results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 1500ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 3202_primary.GetProperties(attributes) ?? 3203_secondary.GetProperties(attributes); 3738PropertyDescriptorCollection properties = desc.GetProperties(attributes); 4163properties = desc.GetProperties(attributes);
System.Data.Common (3)
System\Data\Common\DataRecordInternal.cs (1)
358return ((ICustomTypeDescriptor)this).GetProperties(null);
System\Data\Common\DbDataRecord.cs (1)
98((ICustomTypeDescriptor)this).GetProperties(null);
System\Data\DataRowView.cs (1)
254PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => ((ICustomTypeDescriptor)this).GetProperties(null);
System.Windows.Forms.Design (2)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
227return targetAwareDescriptor.GetProperties(attributes);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1263PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => ((ICustomTypeDescriptor)this).GetProperties(null);
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2886PropertyDescriptorCollection properties = customTypeDescriptor.GetProperties(attributes); 2892properties = customTypeDescriptor.GetProperties(attributes); 2912PropertyDescriptorCollection properties = customTypeDescriptor.GetProperties(attributes); 2921properties = customTypeDescriptor.GetProperties(attributes);