15 implementations of GetProperties
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
197public virtual PropertyDescriptorCollection GetProperties()
System\ComponentModel\TypeDescriptor.cs (4)
2852PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 3189PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 3679PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 4091public PropertyDescriptorCollection GetProperties()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
356PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System\Data\Common\DbConnectionStringBuilder.cs (1)
630PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System\Data\Common\DbDataRecord.cs (1)
97PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() =>
System\Data\DataRowView.cs (1)
254PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => ((ICustomTypeDescriptor)this).GetProperties(null);
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
98PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() =>
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2687PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
55PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => _handler.GetProperties(_instance);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
33PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => PropertyDescriptorCollection.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1298PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => _properties;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1257PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() => ((ICustomTypeDescriptor)this).GetProperties(null);
12 references to GetProperties
System.ComponentModel.TypeConverter (10)
System\ComponentModel\CustomTypeDescriptor.cs (1)
201return _parent.GetProperties();
System\ComponentModel\ICustomTypeDescriptor.cs (1)
143return GetProperties();
System\ComponentModel\TypeDescriptor.cs (8)
1485results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 1491ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 1504results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 1509ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 3191PropertyDescriptorCollection properties = _primary.GetProperties() ?? _secondary.GetProperties(); 3692PropertyDescriptorCollection properties = desc.GetProperties(); 4108properties = desc.GetProperties();
System.Windows.Forms (1)
System\Windows\Forms\ActiveX\AxHost.OleInterfaces.cs (1)
500PropertyDescriptorCollection props = ((ICustomTypeDescriptor)_host).GetProperties();
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
224return targetAwareDescriptor.GetProperties();