99 instantiations of PropertyDescriptorCollection
System (18)
compmod\system\componentmodel\ArrayConverter.cs (1)
66return new PropertyDescriptorCollection(props);
compmod\system\componentmodel\design\DesignerOptionService.cs (2)
223_properties = new PropertyDescriptorCollection(propArray, true); 510PropertyDescriptorCollection props = new PropertyDescriptorCollection(null);
compmod\system\componentmodel\PropertyDescriptorCollection.cs (5)
76public static readonly PropertyDescriptorCollection Empty = new PropertyDescriptorCollection(null, true); 343return new PropertyDescriptorCollection(this.properties, this.propCount, this.namedSort, this.comparer); 354return new PropertyDescriptorCollection(this.properties, this.propCount, names, this.comparer); 364return new PropertyDescriptorCollection(this.properties, this.propCount, names, comparer); 374return new PropertyDescriptorCollection(this.properties, this.propCount, this.namedSort, comparer);
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (2)
551properties = new PropertyDescriptorCollection(fullArray, true); 1943_properties = new PropertyDescriptorCollection(propertyArray, true);
compmod\system\componentmodel\TypeDescriptor.cs (8)
1951return new PropertyDescriptorCollection(null, true); 1966return new PropertyDescriptorCollection(null, true); 1974properties = new PropertyDescriptorCollection((PropertyDescriptor[])filteredProperties.ToArray(typeof(PropertyDescriptor)), true); 2027return new PropertyDescriptorCollection(null, true); 2101props = new PropertyDescriptorCollection(propArray, true); 2461cacheValue = new PropertyDescriptorCollection(propArray, true); 2659cacheValue = new PropertyDescriptorCollection(propArray, true); 2812cacheValue = new PropertyDescriptorCollection(propArray, true);
System.Activities (2)
System\Activities\DynamicActivityTypeDescriptor.cs (1)
134result = new PropertyDescriptorCollection(propertyDescriptors.ToArray());
System\Activities\WorkflowDataContext.cs (1)
96return new PropertyDescriptorCollection(propertyList.ToArray(), true);
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
520return new PropertyDescriptorCollection(array, true);
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
333DesignObjectWrapper.TypePropertyCollection[type] = new PropertyDescriptorCollection(descriptors.ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1280return new PropertyDescriptorCollection(properties.ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
407return new PropertyDescriptorCollection(properties.ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyCollectionImpl.cs (1)
111propertyDescriptors = new PropertyDescriptorCollection(mergedProperties.Concat(browsableAttachedProperties).ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
1213return new PropertyDescriptorCollection(base.GetProperties().Cast<PropertyDescriptor>() 1220return new PropertyDescriptorCollection(base.GetProperties(attributes).Cast<PropertyDescriptor>()
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTypeConverter.cs (1)
152props = new PropertyDescriptorCollection(newProps.ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
74return new PropertyDescriptorCollection(descriptors.ToArray(), true);
System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (1)
183return new PropertyDescriptorCollection(base.GetProperties(attributes).Cast<PropertyDescriptor>()
System.ComponentModel.DataAnnotations (1)
DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (1)
59return new PropertyDescriptorCollection(tempPropertyDescriptors.ToArray(), true);
System.Data (21)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
520return new PropertyDescriptorCollection(array, true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
333DesignObjectWrapper.TypePropertyCollection[type] = new PropertyDescriptorCollection(descriptors.ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1280return new PropertyDescriptorCollection(properties.ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
407return new PropertyDescriptorCollection(properties.ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyCollectionImpl.cs (1)
111propertyDescriptors = new PropertyDescriptorCollection(mergedProperties.Concat(browsableAttachedProperties).ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
1213return new PropertyDescriptorCollection(base.GetProperties().Cast<PropertyDescriptor>() 1220return new PropertyDescriptorCollection(base.GetProperties(attributes).Cast<PropertyDescriptor>()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTypeConverter.cs (1)
152props = new PropertyDescriptorCollection(newProps.ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
74return new PropertyDescriptorCollection(descriptors.ToArray(), true);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (1)
183return new PropertyDescriptorCollection(base.GetProperties(attributes).Cast<PropertyDescriptor>()
fx\src\data\System\Data\Common\DataRecordInternal.cs (1)
330_propertyDescriptors = new PropertyDescriptorCollection(null);
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (2)
347propertyDescriptors = new PropertyDescriptorCollection(properties); 479return new PropertyDescriptorCollection(filteredPropertiesArray);
fx\src\data\System\Data\Common\dbdatarecord.cs (1)
130return new PropertyDescriptorCollection(null);
fx\src\data\System\Data\Common\dbenumerator.cs (1)
105_descriptors = new PropertyDescriptorCollection(props);
fx\src\data\System\Data\DataRowView.cs (1)
19private static PropertyDescriptorCollection zeroPropertyDescriptorCollection = new PropertyDescriptorCollection(null);
fx\src\data\System\Data\DataTable.cs (1)
4406propertyDescriptorCollectionCache = new PropertyDescriptorCollection(props);
fx\src\data\System\Data\DataView.cs (2)
1242return new PropertyDescriptorCollection(null); 1249return new PropertyDescriptorCollection(null);
fx\src\data\System\Data\DataViewManager.cs (1)
335return new PropertyDescriptorCollection(null);
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
137propsCollection = new PropertyDescriptorCollection(props);
System.Data.Entity (2)
System\Data\Common\DataRecord.cs (2)
506return (new PropertyDescriptorCollection(pdList.ToArray())); 540props = new PropertyDescriptorCollection(null);
System.Web (14)
UI\ListSourceHelper.cs (2)
55return new PropertyDescriptorCollection(props); 58return new PropertyDescriptorCollection(null);
UI\TargetFrameworkUtil.cs (1)
380return new PropertyDescriptorCollection(filteredPropertyDescriptors.ToArray());
UI\WebControls\ErrorStyle.cs (1)
79return new PropertyDescriptorCollection(newProperties, true);
UI\WebControls\ErrorTableItemStyle.cs (1)
77return new PropertyDescriptorCollection(newProperties, true);
UI\WebControls\SubMenuStyle.cs (1)
293 return new PropertyDescriptorCollection(newProperties, true);
UI\WebControls\XmlDataSourceNodeDescriptor.cs (1)
89return new PropertyDescriptorCollection(list.ToArray());
UI\WebControls\XmlHierarchyData.cs (1)
182return new PropertyDescriptorCollection(list.ToArray());
UI\WebParts\PropertyGridEditorPart.cs (1)
255PropertyDescriptorCollection filteredPropDescs = new PropertyDescriptorCollection(null);
UI\WebParts\RowToParametersTransformer.cs (4)
68PropertyDescriptorCollection props = new PropertyDescriptorCollection(null); 76return new PropertyDescriptorCollection(null); 186PropertyDescriptorCollection props = new PropertyDescriptorCollection(null); 193return new PropertyDescriptorCollection(null);
UI\WebParts\WebPartMenuStyle.cs (1)
225return new PropertyDescriptorCollection(newProperties, true);
System.Web.DataVisualization (1)
Common\Converters\CustomAttributesConverters.cs (1)
184 PropertyDescriptorCollection propCollection = new PropertyDescriptorCollection(null);
System.Web.DynamicData (1)
DynamicData\Util\DictionaryCustomTypeDescriptor.cs (1)
29_properties = new PropertyDescriptorCollection(dictionaryProps.ToArray());
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceWrapperCollection.cs (1)
96_visiblePropertyDescriptors = new PropertyDescriptorCollection(visiblePropertyDescriptors.ToArray(), true);
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (2)
1058new PropertyDescriptorCollection( 1075newProperties = new PropertyDescriptorCollection(arpd);
System.Windows.Forms (8)
winforms\Managed\System\WinForms\AxHost.cs (1)
2971propsStash = new PropertyDescriptorCollection(temp);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
1398props = new PropertyDescriptorCollection(descs, true);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (1)
395return new PropertyDescriptorCollection(props);
winforms\Managed\System\WinForms\Design\EventsTab.cs (2)
143return new PropertyDescriptorCollection(null); 189realEvents = new PropertyDescriptorCollection(finalEvents);
winforms\Managed\System\WinForms\ListBindingHelper.cs (2)
141return new PropertyDescriptorCollection(null); 631pdc = new PropertyDescriptorCollection(null);
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1583props = new PropertyDescriptorCollection(SortParenProperties(propertyDescriptors));
System.Windows.Forms.DataVisualization (1)
Common\Converters\CustomAttributesConverters.cs (1)
184 PropertyDescriptorCollection propCollection = new PropertyDescriptorCollection(null);
System.Workflow.Activities (3)
LocalService\CorrelationTokenTypeConvertor.cs (1)
98return new PropertyDescriptorCollection((PropertyDescriptor[])props.ToArray(typeof(PropertyDescriptor)));
Rules\Design\LogicalExpressionTypeConverter.cs (2)
51PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null); 175PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null);
System.Workflow.ComponentModel (7)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
1412PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null);
AuthoringOM\Design\PropertyDescriptors.cs (3)
159return new PropertyDescriptorCollection(returnProps); 236return new PropertyDescriptorCollection(properties.ToArray()); 834return new PropertyDescriptorCollection((PropertyDescriptor[])readonlyProperties.ToArray(typeof(PropertyDescriptor)));
AuthoringOM\Design\TypeConverters.cs (2)
127PropertyDescriptorCollection props = new PropertyDescriptorCollection(new PropertyDescriptor[] { }); 292return new PropertyDescriptorCollection((PropertyDescriptor[])properties.ToArray(typeof(PropertyDescriptor)));
AuthoringOM\Serializer\CompositeActivityTypeDescriptor.cs (1)
42return new PropertyDescriptorCollection((PropertyDescriptor[])readonlyProperties.ToArray(typeof(PropertyDescriptor)));
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
676return new PropertyDescriptorCollection(properties.ToArray());
System.WorkflowServices (2)
System\Workflow\Activities\ChannelTokenTypeConverter.cs (1)
75return new PropertyDescriptorCollection((PropertyDescriptor[]) props.ToArray(typeof(PropertyDescriptor)));
System\Workflow\Activities\ContextTokenTypeConverter.cs (1)
75return new PropertyDescriptorCollection((PropertyDescriptor[]) props.ToArray(typeof(PropertyDescriptor)));
System.Xml.Linq (1)
System\Xml\Linq\XComponentModel.cs (1)
33PropertyDescriptorCollection properties = new PropertyDescriptorCollection(null);
WindowsBase (3)
Base\MS\Internal\ComponentModel\APCustomTypeDescriptor.cs (1)
184properties = new PropertyDescriptorCollection(filteredProps.ToArray(), true);
Base\MS\Internal\ComponentModel\DPCustomTypeDescriptor.cs (2)
203properties = new PropertyDescriptorCollection(newDescriptors.ToArray(), true); 369return new PropertyDescriptorCollection(newDescriptors.ToArray(), true);
471 references to PropertyDescriptorCollection
PresentationFramework (2)
src\Framework\MS\Internal\Data\PropertyPathWorker.cs (1)
1491PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(item);
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
2206PropertyDescriptorCollection pdc;
System (75)
compmod\system\componentmodel\ArrayConverter.cs (1)
49public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\BindingList.cs (1)
32private PropertyDescriptorCollection itemTypeProperties = null;
compmod\system\componentmodel\CollectionConverter.cs (1)
52public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\ComponentConverter.cs (1)
41public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\CustomTypeDescriptor.cs (4)
189public virtual PropertyDescriptorCollection GetProperties() 196return PropertyDescriptorCollection.Empty; 206public virtual PropertyDescriptorCollection GetProperties(Attribute[] attributes) 213return PropertyDescriptorCollection.Empty;
compmod\system\componentmodel\design\DesignerOptionService.cs (5)
144private PropertyDescriptorCollection _properties; 201public PropertyDescriptorCollection Properties { 207PropertyDescriptorCollection props = TypeDescriptor.GetProperties(_value); 509public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext cxt, object value, Attribute[] attributes) { 510PropertyDescriptorCollection props = new PropertyDescriptorCollection(null);
compmod\system\componentmodel\design\IEventPropertyService.cs (1)
41PropertyDescriptorCollection GetEventProperties(EventDescriptorCollection events);
compmod\system\componentmodel\design\serialization\IDesignerSerializationManager.cs (1)
33PropertyDescriptorCollection Properties {get;}
compmod\system\componentmodel\ExpandableObjectConverter.cs (1)
37public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\IComNativeDescriptorHandler.cs (1)
61PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes);
compmod\system\componentmodel\ICustomTypeDescriptor.cs (2)
77PropertyDescriptorCollection GetProperties(); 82PropertyDescriptorCollection GetProperties(Attribute[] attributes);
compmod\system\componentmodel\ITypedList.cs (1)
23PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors);
compmod\system\componentmodel\MultilineStringConverter.cs (1)
43public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\NullableConverter.cs (1)
153public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
compmod\system\componentmodel\PropertyDescriptor.cs (4)
246public PropertyDescriptorCollection GetChildProperties() { 253public PropertyDescriptorCollection GetChildProperties(Attribute[] filter) { 260public PropertyDescriptorCollection GetChildProperties(object instance) { 267public virtual PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter) {
compmod\system\componentmodel\PropertyDescriptorCollection.cs (9)
76public static readonly PropertyDescriptorCollection Empty = new PropertyDescriptorCollection(null, true); 90/// Initializes a new instance of the <see cref='System.ComponentModel.PropertyDescriptorCollection'/> 342public virtual PropertyDescriptorCollection Sort() { 353public virtual PropertyDescriptorCollection Sort(string[] names) { 363public virtual PropertyDescriptorCollection Sort(string[] names, IComparer comparer) { 373public virtual PropertyDescriptorCollection Sort(IComparer comparer) { 442/// Gets an enumerator for this <see cref='System.ComponentModel.PropertyDescriptorCollection'/>. 687private PropertyDescriptorCollection owner; 690public PropertyDescriptorEnumerator(PropertyDescriptorCollection owner) {
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (8)
470internal PropertyDescriptorCollection GetExtendedProperties(object instance) 489return PropertyDescriptorCollection.Empty; 496PropertyDescriptorCollection properties = null; 500properties = cache[_extenderPropertiesKey] as PropertyDescriptorCollection; 555properties = PropertyDescriptorCollection.Empty; 796internal PropertyDescriptorCollection GetProperties(Type type) 1442private PropertyDescriptorCollection _properties; 1915internal PropertyDescriptorCollection GetProperties()
compmod\system\componentmodel\TypeConverter.cs (5)
298public PropertyDescriptorCollection GetProperties(object value) { 307public PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value) { 316public virtual PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 432protected PropertyDescriptorCollection SortProperties(PropertyDescriptorCollection props, string[] names) {
compmod\system\componentmodel\TypeDescriptor.cs (27)
1071private static void DebugValidate(PropertyDescriptorCollection properties, Type type, Attribute[] attributes) 1155private static void DebugValidate(PropertyDescriptorCollection properties, object instance, Attribute[] attributes, bool noCustomTypeDesc) 1946public static PropertyDescriptorCollection GetProperties(Type componentType) 1961public static PropertyDescriptorCollection GetProperties(Type componentType, Attribute[] attributes) 1969PropertyDescriptorCollection properties = GetDescriptor(componentType, "componentType").GetProperties(attributes); 1985public static PropertyDescriptorCollection GetProperties(object component) 1994public static PropertyDescriptorCollection GetProperties(object component, bool noCustomTypeDesc) 2004public static PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) 2014public static PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes, bool noCustomTypeDesc) { 2023private static PropertyDescriptorCollection GetPropertiesImpl(object component, Attribute[] attributes, bool noCustomTypeDesc, bool noAttributes) { 2095PropertyDescriptorCollection props = results as PropertyDescriptorCollection; 3586PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 3594PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 3846PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 3848PropertyDescriptorCollection properties = _primary.GetProperties(); 3861PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 3863PropertyDescriptorCollection properties = _primary.GetProperties(attributes); 4278PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 4293PropertyDescriptorCollection properties = desc.GetProperties(); 4301PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 4315PropertyDescriptorCollection props = rp.GetExtendedProperties(_instance); 4321PropertyDescriptorCollection properties = desc.GetProperties(attributes); 4607PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 4615PropertyDescriptorCollection properties; 4633PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 4641PropertyDescriptorCollection properties;
System.Activities (13)
System\Activities\DynamicActivity.cs (4)
191PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 196PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 379PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 384PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System\Activities\DynamicActivityTypeDescriptor.cs (5)
16PropertyDescriptorCollection cachedProperties; 87public PropertyDescriptorCollection GetProperties() 92public PropertyDescriptorCollection GetProperties(Attribute[] attributes) 94PropertyDescriptorCollection result = this.cachedProperties; 100PropertyDescriptorCollection dynamicProperties;
System\Activities\RuntimeArgument.cs (1)
213PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(owningElement);
System\Activities\WorkflowDataContext.cs (3)
21PropertyDescriptorCollection properties; 73PropertyDescriptorCollection CreateProperties() 190public override PropertyDescriptorCollection GetProperties()
System.Activities.Presentation (26)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (2)
152PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(genericType); 755PropertyDescriptorCollection subPropertyDescriptors =
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (4)
506private PropertyDescriptorCollection MergeProperties(Type objectType, PropertyDescriptorCollection incoming) 756PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 764PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (5)
63static IDictionary<Type, PropertyDescriptorCollection> TypePropertyCollection = new Dictionary<Type, PropertyDescriptorCollection>(); 295public PropertyDescriptorCollection GetProperties(Attribute[] attributes) 300public PropertyDescriptorCollection GetProperties() 574PropertyDescriptorCollection properties = DesignObjectWrapper.TypePropertyCollection[type];
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (2)
1255PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 1260PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (2)
378PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 383PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyCollectionImpl.cs (3)
69PropertyDescriptorCollection GetPropertyDescriptors() 71PropertyDescriptorCollection propertyDescriptors = PropertyDescriptorCollection.Empty;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyDescriptor.cs (1)
76public override PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
1211public override PropertyDescriptorCollection GetProperties() 1218public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTypeConverter.cs (2)
115public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 129PropertyDescriptorCollection props = this.converter.GetProperties(WrapContext(context), value, attributes);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
67internal static PropertyDescriptorCollection WrapProperties(ModelItem item)
System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (2)
176public override PropertyDescriptorCollection GetProperties() 181public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
System.ComponentModel.DataAnnotations (6)
DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (4)
31public override PropertyDescriptorCollection GetProperties(Attribute[] attributes) { 35public override PropertyDescriptorCollection GetProperties() { 39private PropertyDescriptorCollection GetPropertiesWithMetadata(PropertyDescriptorCollection originalCollection) {
DataAnnotations\ValidationAttributeStore.cs (1)
211PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(this._type);
DataAnnotations\Validator.cs (1)
443PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(instance);
System.Data (52)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\ExtensibilityAccessor.cs (2)
152PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(genericType); 755PropertyDescriptorCollection subPropertyDescriptors =
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (4)
506private PropertyDescriptorCollection MergeProperties(Type objectType, PropertyDescriptorCollection incoming) 756PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 764PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (5)
63static IDictionary<Type, PropertyDescriptorCollection> TypePropertyCollection = new Dictionary<Type, PropertyDescriptorCollection>(); 295public PropertyDescriptorCollection GetProperties(Attribute[] attributes) 300public PropertyDescriptorCollection GetProperties() 574PropertyDescriptorCollection properties = DesignObjectWrapper.TypePropertyCollection[type];
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (2)
1255PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 1260PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (2)
378PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 383PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyCollectionImpl.cs (3)
69PropertyDescriptorCollection GetPropertyDescriptors() 71PropertyDescriptorCollection propertyDescriptors = PropertyDescriptorCollection.Empty;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelPropertyDescriptor.cs (1)
76public override PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
1211public override PropertyDescriptorCollection GetProperties() 1218public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTypeConverter.cs (2)
115public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 129PropertyDescriptorCollection props = this.converter.GetProperties(WrapContext(context), value, attributes);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelUtilities.cs (1)
67internal static PropertyDescriptorCollection WrapProperties(ModelItem item)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\NamespaceSettingsHandler.cs (2)
176public override PropertyDescriptorCollection GetProperties() 181public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
fx\src\data\System\Data\Common\DataRecordInternal.cs (5)
23private PropertyDescriptorCollection _propertyDescriptors; 27internal DataRecordInternal(SchemaInfo[] schemaInfo, object[] values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup) { 37internal DataRecordInternal(object[] values, PropertyDescriptorCollection descriptors, FieldNameLookup fieldNameLookup) { 324PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 328PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (7)
34private PropertyDescriptorCollection _propertyDescriptors; 335private PropertyDescriptorCollection GetProperties() { 336PropertyDescriptorCollection propertyDescriptors = _propertyDescriptors; 443private PropertyDescriptorCollection GetProperties(Attribute[] attributes) { 444PropertyDescriptorCollection propertyDescriptors = GetProperties(); 500PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 503PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\Common\dbdatarecord.cs (2)
125PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 129PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\Common\dbenumerator.cs (1)
23internal PropertyDescriptorCollection _descriptors; // cached property descriptors
fx\src\data\System\Data\DataRowView.cs (3)
19private static PropertyDescriptorCollection zeroPropertyDescriptorCollection = new PropertyDescriptorCollection(null); 295PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 299PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\DataTable.cs (2)
132private PropertyDescriptorCollection propertyDescriptorCollectionCache = null; 4394internal PropertyDescriptorCollection GetPropertyDescriptorCollection(Attribute[] attributes) {
fx\src\data\System\Data\DataView.cs (1)
1234PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) {
fx\src\data\System\Data\DataViewManager.cs (1)
321PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) {
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (3)
20private PropertyDescriptorCollection propsCollection; 115PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 126PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) {
fx\src\data\System\Data\xmlsaver.cs (1)
107PropertyDescriptorCollection pds = TypeDescriptor.GetProperties(instance) ;
System.Data.Entity (10)
System\Data\Common\DataRecord.cs (7)
431private PropertyDescriptorCollection _propertyDescriptors = null; 440public PropertyDescriptorCollection FilteredProperties; 465private PropertyDescriptorCollection InitializePropertyDescriptors() 490internal static PropertyDescriptorCollection CreatePropertyDescriptorCollection(StructuralType structuralType, Type componentType, bool isReadOnly) 508PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { return ((ICustomTypeDescriptor)this).GetProperties(null); } 509PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 513PropertyDescriptorCollection props = InitializePropertyDescriptors();
System\Data\Objects\DataRecordObjectView.cs (3)
32private PropertyDescriptorCollection _propertyDescriptorsCache; 140PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) 142PropertyDescriptorCollection propertyDescriptors;
System.Drawing (11)
commonui\System\Drawing\Advanced\SizeFConverter.cs (2)
169public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 170PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(SizeF), attributes);
commonui\System\Drawing\FontConverter.cs (2)
435public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 436PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Font), attributes);
commonui\System\Drawing\ImageConverter.cs (1)
259public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
commonui\System\Drawing\PointConverter.cs (2)
187public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 188PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Point), attributes);
commonui\System\Drawing\RectangleConverter.cs (2)
193public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 194PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Rectangle), attributes);
commonui\System\Drawing\SizeConverter.cs (2)
185public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 186PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Size), attributes);
System.Web (80)
ModelBinding\MutableObjectModelBinder.cs (1)
136PropertyDescriptorCollection propertyDescriptors = modelDescriptor.GetProperties();
Routing\RouteValueDictionary.cs (1)
63PropertyDescriptorCollection props = TypeDescriptor.GetProperties(values);
UI\ControlBuilder.cs (3)
590private PropertyDescriptorCollection PropertyDescriptors { 3083PropertyDescriptorCollection propertyDescriptors; 3244internal PropertyDescriptorCollection PropertyDescriptors;
UI\ControlPropertyNameConverter.cs (1)
30PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(control.GetType());
UI\DataBinder.cs (4)
27private static readonly ConcurrentDictionary<Type, PropertyDescriptorCollection> propertyCache = new ConcurrentDictionary<Type, PropertyDescriptorCollection>(); 143internal static PropertyDescriptorCollection GetPropertiesFromCache(object container) { 146PropertyDescriptorCollection properties = null;
UI\DataSourceHelper.cs (1)
40PropertyDescriptorCollection propDescs = typedMemberList.GetItemProperties(new PropertyDescriptor[0]);
UI\ListSourceHelper.cs (1)
45PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) {
UI\PropertyMapper.cs (1)
181PropertyDescriptorCollection properties = TargetFrameworkUtil.GetProperties(childObject);
UI\TargetFrameworkUtil.cs (12)
57private static ConcurrentDictionary<Type, PropertyDescriptorCollection> s_typePropertyDescriptorCollectionDict = 58new ConcurrentDictionary<Type, PropertyDescriptorCollection>(); 59private static ConcurrentDictionary<object, PropertyDescriptorCollection> s_objectPropertyDescriptorCollectionDict = 60new ConcurrentDictionary<object, PropertyDescriptorCollection>(); 297internal static PropertyDescriptorCollection GetProperties(Type type) { 302PropertyDescriptorCollection result = null; 312private static PropertyDescriptorCollection GetPropertyDescriptorCollection(Type type) { 326internal static PropertyDescriptorCollection GetProperties(object obj) { 331PropertyDescriptorCollection result = null; 341private static PropertyDescriptorCollection GetPropertyDescriptorCollection(object obj) { 360private static PropertyDescriptorCollection GetFilteredPropertyDescriptorCollection(Type objectType, object instance) { 362PropertyDescriptorCollection propertyDescriptors = null;
UI\WebControls\AdRotator.cs (1)
343PropertyDescriptorCollection propertyDescriptors = null;
UI\WebControls\DataGrid.cs (1)
870PropertyDescriptorCollection propDescs = null;
UI\WebControls\DetailsViewRowsGenerator.cs (1)
23PropertyDescriptorCollection propDescs = null;
UI\WebControls\ErrorStyle.cs (3)
59PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 63PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { 64PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes);
UI\WebControls\ErrorTableItemStyle.cs (3)
57PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 61PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { 62PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes);
UI\WebControls\GridViewColumnsGenerator.cs (1)
27PropertyDescriptorCollection propDescs = null;
UI\WebControls\HyperLinkColumn.cs (1)
282PropertyDescriptorCollection props = TypeDescriptor.GetProperties(dataItem);
UI\WebControls\HyperLinkField.cs (1)
336PropertyDescriptorCollection props = TypeDescriptor.GetProperties(dataItem);
UI\WebControls\Menu.cs (1)
1458PropertyDescriptorCollection props = TypeDescriptor.GetProperties(item);
UI\WebControls\ObjectDataSourceView.cs (1)
689PropertyDescriptorCollection props = TypeDescriptor.GetProperties(dataObject);
UI\WebControls\PagedDataSource.cs (1)
353public PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) {
UI\WebControls\SubMenuStyle.cs (3)
266 PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 270 PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { 271 PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes);
UI\WebControls\TreeView.cs (1)
1484PropertyDescriptorCollection props = TypeDescriptor.GetProperties(item);
UI\WebControls\XmlDataSourceNodeDescriptor.cs (2)
76PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 80PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attrFilter) {
UI\WebControls\XmlHierarchyData.cs (2)
165PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 169PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attrFilter) {
UI\WebParts\IWebPartParameters.cs (2)
18PropertyDescriptorCollection Schema { get; } 20void SetConsumerSchema(PropertyDescriptorCollection schema);
UI\WebParts\IWebPartRow.cs (1)
13PropertyDescriptorCollection Schema { get; }
UI\WebParts\IWebPartTable.cs (1)
14PropertyDescriptorCollection Schema { get; }
UI\WebParts\PropertyGridEditorPart.cs (5)
113PropertyDescriptorCollection properties = GetEditableProperties(editableObject, true); 247private PropertyDescriptorCollection GetEditableProperties(object editableObject, bool sort) { 250PropertyDescriptorCollection propDescs = TypeDescriptor.GetProperties(editableObject, FilterAttributes); 255PropertyDescriptorCollection filteredPropDescs = new PropertyDescriptorCollection(null); 303PropertyDescriptorCollection propDescs = GetEditableProperties(editableObject, true);
UI\WebParts\RowToFieldTransformer.cs (4)
36private PropertyDescriptorCollection ProviderSchema { 87PropertyDescriptorCollection schema = ProviderSchema; 105protected override PropertyDescriptorCollection ConsumerSchema { 111protected override PropertyDescriptorCollection ProviderSchema {
UI\WebParts\RowToParametersTransformer.cs (13)
22private PropertyDescriptorCollection _consumerSchema; 41private PropertyDescriptorCollection ConsumerSchema { 59private PropertyDescriptorCollection ProviderSchema { 66private PropertyDescriptorCollection SelectedProviderSchema { 68PropertyDescriptorCollection props = new PropertyDescriptorCollection(null); 70PropertyDescriptorCollection providerSchema = ProviderSchema; 106PropertyDescriptorCollection consumerSchema = ((IWebPartParameters)this).Schema; 109PropertyDescriptorCollection providerSchema = SelectedProviderSchema; 182PropertyDescriptorCollection IWebPartParameters.Schema { 186PropertyDescriptorCollection props = new PropertyDescriptorCollection(null); 205void IWebPartParameters.SetConsumerSchema(PropertyDescriptorCollection schema) { 221protected override PropertyDescriptorCollection ConsumerSchema { 227protected override PropertyDescriptorCollection ProviderSchema {
UI\WebParts\TransformerConfigurationWizardBase.cs (3)
26protected abstract PropertyDescriptorCollection ConsumerSchema { get; } 46protected abstract PropertyDescriptorCollection ProviderSchema { get; } 144private string[] ConvertSchemaToArray(PropertyDescriptorCollection schema) {
UI\WebParts\WebPartMenuStyle.cs (3)
176PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 180PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { 181PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes);
System.Web.DataVisualization (2)
Common\Converters\CustomAttributesConverters.cs (2)
182 public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object obj, Attribute[] attributes) 184 PropertyDescriptorCollection propCollection = new PropertyDescriptorCollection(null);
System.Web.DynamicData (4)
DynamicData\ModelProviders\SimpleTableProvider.cs (1)
53private void InitializeColumns(PropertyDescriptorCollection columnDescriptors) {
DynamicData\Util\DictionaryCustomTypeDescriptor.cs (2)
9private PropertyDescriptorCollection _properties; 26public override PropertyDescriptorCollection GetProperties() {
DynamicData\Util\Misc.cs (1)
73var props = TypeDescriptor.GetProperties(instance);
System.Web.Entity (11)
System\Data\WebControls\EntityDataSourceUtil.cs (1)
154PropertyDescriptorCollection entityProperties = entityWrapper.GetProperties();
System\Data\WebControls\EntityDataSourceView.cs (2)
882private void ConvertProperties(IDictionary values, PropertyDescriptorCollection propertyDescriptors, ParameterCollection referenceParameters, Dictionary<string, object> convertedValues) 992PropertyDescriptorCollection collection = wrapperCollection.GetItemProperties(null);
System\Data\WebControls\EntityDataSourceViewSchema.cs (4)
27PropertyDescriptorCollection properties = wrappers.GetItemProperties(null); 48PropertyDescriptorCollection properties = typedList.GetItemProperties(null); 65PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(type); 73private void CreateColumnsFromPropDescs(PropertyDescriptorCollection properties, string[] keyNames)
System\Data\WebControls\EntityDataSourceWrapper.cs (2)
89public PropertyDescriptorCollection GetProperties() 94PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
System\Data\WebControls\EntityDataSourceWrapperCollection.cs (2)
47private readonly PropertyDescriptorCollection _visiblePropertyDescriptors; 135public PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors)
System.Web.Extensions (4)
UI\WebControls\DataSourceHelper.cs (1)
134PropertyDescriptorCollection props = TypeDescriptor.GetProperties(dataObject);
UI\WebControls\LinqDataSourceView.cs (1)
845PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(oldDataObject);
UI\WebControls\ListViewPagedDataSource.cs (1)
250public PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) {
UI\WebControls\QueryableDataSourceView.cs (1)
587PropertyDescriptorCollection props = TypeDescriptor.GetProperties(EntityType);
System.Web.Mobile (20)
UI\MobileControls\DataSourceHelper.cs (1)
56PropertyDescriptorCollection propDescs =
UI\MobileControls\Design\Converters\DataFieldConverter.cs (1)
103PropertyDescriptorCollection props = null;
UI\MobileControls\Design\MobileControlPersister.cs (3)
359PropertyDescriptorCollection propDescs = TypeDescriptor.GetProperties(component); 487PropertyDescriptorCollection properties; 557PropertyDescriptorCollection subProps = null;
UI\MobileControls\Design\ObjectListFieldsPage.cs (1)
176PropertyDescriptorCollection props = null;
UI\MobileControls\Design\PropertyOverridesDialog.cs (12)
757PropertyDescriptorCollection properties = 888PropertyDescriptorCollection properties = 915PropertyDescriptorCollection properties = 958PropertyDescriptorCollection properties = 989PropertyDescriptorCollection properties = 1054private PropertyDescriptorCollection PreFilterProperties( 1055PropertyDescriptorCollection originalProperties 1057PropertyDescriptorCollection newProperties = 1129PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 1131PropertyDescriptorCollection collection = 1139PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 1141PropertyDescriptorCollection collection =
UI\MobileControls\Design\StylesEditorDialog.cs (1)
437PropertyDescriptorCollection propDescs = TypeDescriptor.GetProperties(style);
UI\MobileControls\ObjectList.cs (1)
823PropertyDescriptorCollection propertyDescriptors = null;
System.Windows.Forms (97)
winforms\Managed\System\WinForms\AxHost.cs (7)
208private PropertyDescriptorCollection propsStash = null; 2841private PropertyDescriptorCollection FillProperties(Attribute[] attributes) { 2883PropertyDescriptorCollection baseProps = TypeDescriptor.GetProperties(this, null, true); 2983PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { 2993PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { 3010PropertyDescriptorCollection props = FillProperties(null); 4373PropertyDescriptorCollection props = ((ICustomTypeDescriptor)host).GetProperties();
winforms\Managed\System\WinForms\Binding.cs (1)
518PropertyDescriptorCollection propInfos;
winforms\Managed\System\WinForms\BindingMAnagerBase.cs (5)
117internal abstract PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors); 123public virtual PropertyDescriptorCollection GetItemProperties() { 128protected internal virtual PropertyDescriptorCollection GetItemProperties(ArrayList dataSources, ArrayList listAccessors) { 146protected virtual PropertyDescriptorCollection GetItemProperties(Type listType, int offset, ArrayList dataSources, ArrayList listAccessors) { 171PropertyDescriptorCollection itemProps = null;
winforms\Managed\System\WinForms\BindingSource.cs (5)
79private PropertyDescriptorCollection itemShape; 873PropertyDescriptorCollection dsProps = ListBindingHelper.GetListItemProperties(this.dataSource); 1058PropertyDescriptorCollection dsProps = cm.GetItemProperties(); 1123PropertyDescriptorCollection props = this.currencyManager.GetItemProperties(); 1745public virtual PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) {
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2ExtendedTypeConverter.cs (1)
143public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2IDispatchConverter.cs (1)
89public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (2)
1390public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 1391PropertyDescriptorCollection props = TypeDescriptor.GetProperties(value, attributes);
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (4)
382internal PropertyDescriptorCollection GetProperties(Object component, Attribute[] attributes) { 387return PropertyDescriptorCollection.Empty; 555PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() 563PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes)
winforms\Managed\System\WinForms\Control.cs (2)
17308PropertyDescriptorCollection props = TypeDescriptor.GetProperties(control, 18027PropertyDescriptorCollection props = TypeDescriptor.GetProperties(control,
winforms\Managed\System\WinForms\CurrencyManager.cs (2)
578internal override PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) { 587public override PropertyDescriptorCollection GetItemProperties() {
winforms\Managed\System\WinForms\DataGrid.cs (1)
8719PropertyDescriptorCollection props = lm.GetItemProperties();
winforms\Managed\System\WinForms\DataGridColumn.cs (1)
382PropertyDescriptorCollection propCollection = lm.GetItemProperties();
winforms\Managed\System\WinForms\DataGridTable.cs (2)
1393PropertyDescriptorCollection propCollection = listManager.GetItemProperties(); 1412PropertyDescriptorCollection propCollection = listManager.GetItemProperties();
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (2)
1606PropertyDescriptorCollection props = this.DataManager.GetItemProperties(); 1634PropertyDescriptorCollection props = this.DataManager.GetItemProperties();
winforms\Managed\System\WinForms\DataGridViewDataConnection.cs (2)
26PropertyDescriptorCollection props = null; 1640PropertyDescriptorCollection props = cm.GetItemProperties();
winforms\Managed\System\WinForms\Design\EventsTab.cs (4)
129public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) { 137public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) { 146PropertyDescriptorCollection realEvents = eventPropertySvc.GetEventProperties(events); 156PropertyDescriptorCollection namespaceProperties = TypeDescriptor.GetProperties(component, attributesPlusNamespace);
winforms\Managed\System\WinForms\Design\PropertyTab.cs (3)
134public virtual PropertyDescriptorCollection GetProperties(Object component) { 143public abstract PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes); 149public virtual PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) {
winforms\Managed\System\WinForms\FlatButtonAppearance.cs (1)
188public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) {
winforms\Managed\System\WinForms\ImageIndexConverter.cs (1)
100PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance);
winforms\Managed\System\WinForms\ImageKeyConverter.cs (1)
115PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance);
winforms\Managed\System\WinForms\LinkArea.cs (2)
238public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 239PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(LinkArea), attributes);
winforms\Managed\System\WinForms\ListBindingHelper.cs (21)
67PropertyDescriptorCollection dsProps = ListBindingHelper.GetListItemProperties(dataSource); 137public static PropertyDescriptorCollection GetListItemProperties(object list) { 138PropertyDescriptorCollection pdc; 166public static PropertyDescriptorCollection GetListItemProperties(object list, PropertyDescriptor[] listAccessors) { 167PropertyDescriptorCollection pdc; 198public static PropertyDescriptorCollection GetListItemProperties(object dataSource, string dataMember, PropertyDescriptor[] listAccessors) { 203PropertyDescriptorCollection dsProps = ListBindingHelper.GetListItemProperties(dataSource); 307PropertyDescriptorCollection dsProps = GetListItemProperties(dataSource); 349private static PropertyDescriptorCollection GetListItemPropertiesByType(Type type, PropertyDescriptor[] listAccessors) { 350PropertyDescriptorCollection pdc = null; 362private static PropertyDescriptorCollection GetListItemPropertiesByType(Type type, PropertyDescriptor[] listAccessors, int startIndex) { 363PropertyDescriptorCollection pdc = null; 388private static PropertyDescriptorCollection GetListItemPropertiesByEnumerable(IEnumerable iEnumerable, PropertyDescriptor[] listAccessors, int startIndex) { 389PropertyDescriptorCollection pdc = null; 439private static PropertyDescriptorCollection GetListItemPropertiesByEnumerable(IEnumerable enumerable, PropertyDescriptor[] listAccessors) { 440PropertyDescriptorCollection pdc = null; 463private static PropertyDescriptorCollection GetListItemPropertiesByInstance(object target, PropertyDescriptor[] listAccessors, int startIndex) { 468PropertyDescriptorCollection pdc; 569private static PropertyDescriptorCollection GetListItemPropertiesByType(Type type) { 573private static PropertyDescriptorCollection GetListItemPropertiesByEnumerable(IEnumerable enumerable) { 574PropertyDescriptorCollection pdc = null;
winforms\Managed\System\WinForms\ListControl.cs (3)
171PropertyDescriptorCollection props = this.DataManager.GetItemProperties(); 304PropertyDescriptorCollection props = dataManager.GetItemProperties(); 425PropertyDescriptorCollection props = dataManager.GetItemProperties();
winforms\Managed\System\WinForms\Padding.cs (2)
412public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 413PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(Padding), attributes);
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
1290PropertyDescriptorCollection events;
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1555PropertyDescriptorCollection props = null;
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
57PropertyDescriptorCollection props = parentConverter.GetProperties(parentEntry, owner);
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (3)
141PropertyDescriptorCollection[] propCollections = new PropertyDescriptorCollection[objs.Length]; 147PropertyDescriptorCollection pdc = tab.GetProperties(parentEntry, objs[i], attrs);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertiesTab.cs (3)
57PropertyDescriptorCollection props = GetProperties(obj); 74public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) { 82public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object component, Attribute[] attributes) {
winforms\Managed\System\WinForms\PropertyManager.cs (1)
76internal override PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) {
winforms\Managed\System\WinForms\RelatedCurrencyManager.cs (2)
77internal override PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) { 99public override PropertyDescriptorCollection GetItemProperties() {
winforms\Managed\System\WinForms\RelatedPropertyManager.cs (1)
55internal override PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) {
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
1762public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 1763PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(DockPaddingEdges), attributes);
winforms\Managed\System\WinForms\SelectionRangeConverter.cs (3)
115PropertyDescriptorCollection props = GetProperties(value); 176public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 177PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(SelectionRange), attributes);
winforms\Managed\System\WinForms\TableLayoutPanelCellPosition.cs (2)
164public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { 165PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(TableLayoutPanelCellPosition), attributes);
winforms\Managed\System\WinForms\TreeViewImageIndexConverter.cs (1)
96PropertyDescriptorCollection props = TypeDescriptor.GetProperties(instance);
System.Windows.Forms.DataVisualization (2)
Common\Converters\CustomAttributesConverters.cs (2)
182 public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object obj, Attribute[] attributes) 184 PropertyDescriptorCollection propCollection = new PropertyDescriptorCollection(null);
System.Workflow.Activities (7)
Designers\StateDesigner.cs (1)
1923PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(activity);
LocalService\CorrelationTokenTypeConvertor.cs (2)
94public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 96PropertyDescriptorCollection properties = base.GetProperties(context, value, attributes);
Rules\Design\LogicalExpressionTypeConverter.cs (4)
49public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 51PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null); 168public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 175PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null);
System.Workflow.ComponentModel (24)
AuthoringOM\Design\ActivityDesigner.cs (1)
743PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(Activity, new Attribute[] { new BrowsableAttribute(true) });
AuthoringOM\Design\ComponentSerializationService.cs (2)
504PropertyDescriptorCollection props = null; 697PropertyDescriptorCollection props = null;
AuthoringOM\Design\CustomActivityDesigner.cs (1)
315PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(host.RootComponent);
AuthoringOM\Design\DesignerHelpers.cs (2)
1338PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(component, new Attribute[] { BrowsableAttribute.Yes }); 1734PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(activity);
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (2)
1410public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 1412PropertyDescriptorCollection newProps = new PropertyDescriptorCollection(null);
AuthoringOM\Design\FreeFormDesigner.cs (1)
1044PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(designer);
AuthoringOM\Design\PropertyDescriptors.cs (5)
146internal static PropertyDescriptorCollection FilterProperties(IServiceProvider serviceProvider, object propertyOwner, PropertyDescriptorCollection props) 214internal static PropertyDescriptorCollection GetPropertiesForEvents(IServiceProvider serviceProvider, object eventOwner) 820public override PropertyDescriptorCollection GetProperties() 822PropertyDescriptorCollection properties = base.GetProperties();
AuthoringOM\Design\Themes.cs (2)
3212public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 3214PropertyDescriptorCollection srcProperties = base.GetProperties(context, value, attributes);
AuthoringOM\Design\TypeConverters.cs (4)
125public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 127PropertyDescriptorCollection props = new PropertyDescriptorCollection(new PropertyDescriptor[] { }); 268public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 274PropertyDescriptorCollection props = TypeDescriptor.GetProperties(value, new Attribute[] { BrowsableAttribute.Yes });
AuthoringOM\Serializer\ActivityCodeDomSerializationManager.cs (1)
271public PropertyDescriptorCollection Properties
AuthoringOM\Serializer\CompositeActivityTypeDescriptor.cs (2)
31public override PropertyDescriptorCollection GetProperties(Attribute[] attributes) 33PropertyDescriptorCollection properties = base.GetProperties(attributes);
AuthoringOM\Serializer\WorkflowMarkupSerializationManager.cs (1)
459PropertyDescriptorCollection IDesignerSerializationManager.Properties
System.Workflow.Runtime (3)
System\Activities\Statements\Interop.cs (3)
593PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) 597PropertyDescriptorCollection interopProperties; 708PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties()
System.WorkflowServices (6)
System\Workflow\Activities\ChannelTokenTypeConverter.cs (2)
71public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 73PropertyDescriptorCollection properties = base.GetProperties(context, value, attributes);
System\Workflow\Activities\ContextTokenTypeConverter.cs (2)
71public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 73PropertyDescriptorCollection properties = base.GetProperties(context, value, attributes);
System\Workflow\Activities\WorkflowServiceAttributesTypeConverter.cs (2)
12public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) 16PropertyDescriptorCollection subProperties = TypeDescriptor.GetProperties(value, new Attribute[] { new BrowsableAttribute(true) });
System.Xml.Linq (3)
System\Xml\Linq\XComponentModel.cs (3)
28public override PropertyDescriptorCollection GetProperties() { 32public override PropertyDescriptorCollection GetProperties(Attribute[] attributes) { 33PropertyDescriptorCollection properties = new PropertyDescriptorCollection(null);
WindowsBase (13)
Base\MS\Internal\ComponentModel\APCustomTypeDescriptor.cs (4)
55public PropertyDescriptorCollection GetProperties() 64public PropertyDescriptorCollection GetProperties(Attribute[] attributes) 94return PropertyDescriptorCollection.Empty; 183PropertyDescriptorCollection properties;
Base\MS\Internal\ComponentModel\DPCustomTypeDescriptor.cs (8)
80public PropertyDescriptorCollection GetProperties() 89public PropertyDescriptorCollection GetProperties(Attribute[] attributes) 118return PropertyDescriptorCollection.Empty; 127if (_instance == null) return PropertyDescriptorCollection.Empty; 147PropertyDescriptorCollection properties = (PropertyDescriptorCollection)_typeProperties[_objectType]; 278private PropertyDescriptorCollection CreateProperties() 280PropertyDescriptorCollection baseProps = _parent.GetProperties();
Base\System\ComponentModel\DependencyPropertyDescriptor.cs (1)
386public override PropertyDescriptorCollection GetChildProperties(object instance, Attribute[] filter) { return Property.GetChildProperties(instance, filter); }