35 implementations of GetProperties
System (5)
compmod\system\componentmodel\CustomTypeDescriptor.cs (1)
206public virtual PropertyDescriptorCollection GetProperties(Attribute[] attributes)
compmod\system\componentmodel\TypeDescriptor.cs (4)
3594PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 3861PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 4301PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 4633PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Activities (3)
System\Activities\DynamicActivity.cs (2)
196PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 384PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System\Activities\DynamicActivityTypeDescriptor.cs (1)
92public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
756PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
295public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1255PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
378PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Data (9)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
756PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
295public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1255PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
378PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
fx\src\data\System\Data\Common\DataRecordInternal.cs (1)
328PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (1)
503PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\Common\dbdatarecord.cs (1)
129PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\DataRowView.cs (1)
299PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
126PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
System.Data.Entity (1)
System\Data\Common\DataRecord.cs (1)
509PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Web (6)
UI\WebControls\ErrorStyle.cs (1)
63PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
UI\WebControls\ErrorTableItemStyle.cs (1)
61PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
UI\WebControls\SubMenuStyle.cs (1)
270 PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
UI\WebControls\XmlDataSourceNodeDescriptor.cs (1)
80PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attrFilter) {
UI\WebControls\XmlHierarchyData.cs (1)
169PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attrFilter) {
UI\WebParts\WebPartMenuStyle.cs (1)
180PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceWrapper.cs (1)
94PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Web.Mobile (1)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
1139PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Windows.Forms (2)
winforms\Managed\System\WinForms\AxHost.cs (1)
2993PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (1)
563PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
593PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
WindowsBase (2)
Base\MS\Internal\ComponentModel\APCustomTypeDescriptor.cs (1)
64public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
Base\MS\Internal\ComponentModel\DPCustomTypeDescriptor.cs (1)
89public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
24 references to GetProperties
System (10)
compmod\system\componentmodel\CustomTypeDescriptor.cs (1)
210return _parent.GetProperties(attributes);
compmod\system\componentmodel\TypeDescriptor.cs (9)
1969PropertyDescriptorCollection properties = GetDescriptor(componentType, "componentType").GetProperties(attributes); 2063results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 2069ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 2082results = noAttributes ? typeDesc.GetProperties() : typeDesc.GetProperties(attributes); 2087ICollection extResults = noAttributes ? extDesc.GetProperties() : extDesc.GetProperties(attributes); 3863PropertyDescriptorCollection properties = _primary.GetProperties(attributes); 3866properties = _secondary.GetProperties(attributes); 4321PropertyDescriptorCollection properties = desc.GetProperties(attributes); 4649properties = desc.GetProperties(attributes);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
758return _provider.MergeProperties(_objectType, _parent.GetProperties(attributes));
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
758return _provider.MergeProperties(_objectType, _parent.GetProperties(attributes));
fx\src\data\System\Data\Common\DataRecordInternal.cs (1)
325return((ICustomTypeDescriptor)this).GetProperties(null);
fx\src\data\System\Data\Common\dbdatarecord.cs (1)
126return((ICustomTypeDescriptor)this).GetProperties(null);
fx\src\data\System\Data\DataRowView.cs (1)
296return((ICustomTypeDescriptor)this).GetProperties(null);
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
116return((ICustomTypeDescriptor)this).GetProperties(null);
System.Data.Entity (1)
System\Data\Common\DataRecord.cs (1)
508PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { return ((ICustomTypeDescriptor)this).GetProperties(null); }
System.Web (6)
UI\WebControls\ErrorStyle.cs (1)
60return ((ICustomTypeDescriptor)this).GetProperties(null);
UI\WebControls\ErrorTableItemStyle.cs (1)
58return ((ICustomTypeDescriptor)this).GetProperties(null);
UI\WebControls\SubMenuStyle.cs (1)
267 return ((ICustomTypeDescriptor)this).GetProperties(null);
UI\WebControls\XmlDataSourceNodeDescriptor.cs (1)
77return ((ICustomTypeDescriptor)this).GetProperties(null);
UI\WebControls\XmlHierarchyData.cs (1)
166return ((ICustomTypeDescriptor)this).GetProperties(null);
UI\WebParts\WebPartMenuStyle.cs (1)
177return ((ICustomTypeDescriptor)this).GetProperties(null);
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
710return ((ICustomTypeDescriptor)this).GetProperties(null);