17 references to PropertyDescriptorCollection
System.ComponentModel.TypeConverter (6)
MS\Internal\Xml\Linq\ComponentModel\XComponentModel.cs (1)
41PropertyDescriptorCollection properties = new PropertyDescriptorCollection(null);
System\ComponentModel\ArrayConverter.cs (2)
41return new PropertyDescriptorCollection(null); 55return new PropertyDescriptorCollection(props);
System\ComponentModel\CollectionConverter.cs (1)
36return new PropertyDescriptorCollection(null);
System\ComponentModel\Design\DesignerOptionService.cs (1)
442PropertyDescriptorCollection props = new PropertyDescriptorCollection(null);
System\ComponentModel\PropertyDescriptorCollection.cs (1)
55public PropertyDescriptorCollection(PropertyDescriptor[]? properties, bool readOnly) : this(properties)
System.Data.Common (11)
System\Data\Common\DataRecordInternal.cs (1)
363_propertyDescriptors ??= new PropertyDescriptorCollection(null);
System\Data\Common\DbConnectionStringBuilder.cs (2)
415propertyDescriptors = new PropertyDescriptorCollection(properties); 584return new PropertyDescriptorCollection(filteredPropertiesArray);
System\Data\Common\DbDataRecord.cs (1)
102new PropertyDescriptorCollection(null);
System\Data\Common\DbEnumerator.cs (1)
108_descriptors = new PropertyDescriptorCollection(props);
System\Data\DataRowView.cs (1)
15private static readonly PropertyDescriptorCollection s_zeroPropertyDescriptorCollection = new PropertyDescriptorCollection(null);
System\Data\DataTable.cs (1)
4916_propertyDescriptorCollectionCache = new PropertyDescriptorCollection(props);
System\Data\DataView.cs (2)
1191return new PropertyDescriptorCollection(null); 1201return new PropertyDescriptorCollection(null);
System\Data\DataViewManager.cs (1)
302return new PropertyDescriptorCollection(null);
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
127_propsCollection = new PropertyDescriptorCollection(props);