6 instantiations of PropertyCollection
System.Data (6)
fx\src\data\System\Data\Constraint.cs (1)
113extendedProperties = new PropertyCollection();
fx\src\data\System\Data\DataColumn.cs (1)
852extendedProperties = new PropertyCollection();
fx\src\data\System\Data\DataRelation.cs (1)
597extendedProperties = new PropertyCollection();
fx\src\data\System\Data\DataSet.cs (1)
738extendedProperties = new PropertyCollection();
fx\src\data\System\Data\DataTable.cs (1)
1266extendedProperties = new PropertyCollection();
fx\src\data\System\Data\PropertyCollection.cs (1)
31PropertyCollection clone = new PropertyCollection();
35 references to PropertyCollection
System.Data (35)
fx\src\data\System\Data\Constraint.cs (2)
29internal PropertyCollection extendedProperties = null; 110public PropertyCollection ExtendedProperties {
fx\src\data\System\Data\DataColumn.cs (2)
66internal PropertyCollection extendedProperties = null; 849public PropertyCollection ExtendedProperties {
fx\src\data\System\Data\DataRelation.cs (2)
50internal PropertyCollection extendedProperties = null; 594public PropertyCollection ExtendedProperties {
fx\src\data\System\Data\DataSet.cs (6)
53internal PropertyCollection extendedProperties = null; 440extendedProperties = (PropertyCollection)info.GetValue("DataSet.ExtendedProperties", typeof(PropertyCollection)); 488PropertyCollection extendedProperties = (PropertyCollection)list[4]; 735public PropertyCollection ExtendedProperties {
fx\src\data\System\Data\DataTable.cs (10)
74internal PropertyCollection extendedProperties = null; 415extendedProperties = (PropertyCollection) info.GetValue("DataTable.ExtendedProperties", typeof(PropertyCollection)); 456dc.extendedProperties = (PropertyCollection) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.ExtendedProperties", i), typeof(PropertyCollection)); 555PropertyCollection extendedProperties = (PropertyCollection) list[4]; 575PropertyCollection extendedProperties = (PropertyCollection) list[5]; 1263public PropertyCollection ExtendedProperties {
fx\src\data\System\Data\Merger.cs (2)
529private void MergeExtendedProperties(PropertyCollection src, PropertyCollection dst) {
fx\src\data\System\Data\PropertyCollection.cs (1)
31PropertyCollection clone = new PropertyCollection();
fx\src\data\System\Data\xmlsaver.cs (4)
64internal static void AddExtendedProperties(PropertyCollection props, XmlElement node) { 68internal static void AddExtendedProperties(PropertyCollection props, XmlElement node, Type type) { 153if (propInst is PropertyCollection) { 300private static bool _PropsNotEmpty(PropertyCollection props) {
fx\src\data\System\Data\XMLSchema.cs (6)
283PropertyCollection props = null; 290Debug.Assert(val is PropertyCollection, "We can set values only for classes that have ExtendedProperties"); 291props = (PropertyCollection) val; 343PropertyCollection props = null; 348Debug.Assert(val is PropertyCollection, "We can set values only for classes that have ExtendedProperties"); 349props = (PropertyCollection) val;