6 instantiations of DataColumnPropertyDescriptor
System.Data.Common (6)
System\Data\DataTable.cs (1)
4914props[i] = new DataColumnPropertyDescriptor(Columns[i]);
System\Data\DataView.cs (5)
957return new DataColumnPropertyDescriptor(_index._indexFields[0].Column); 1131DataColumnPropertyDescriptor columnProperty = new DataColumnPropertyDescriptor(_index._indexFields[i].Column); 1406ListChangedEventArgs newEventArg = new ListChangedEventArgs(e.ListChangedType, e.NewIndex, new DataColumnPropertyDescriptor(col)); 1658e.Action == CollectionChangeAction.Add ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorAdded, new DataColumnPropertyDescriptor((System.Data.DataColumn)e.Element!)) : 1660e.Action == CollectionChangeAction.Remove ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorDeleted, new DataColumnPropertyDescriptor((System.Data.DataColumn)e.Element!)) :
3 references to DataColumnPropertyDescriptor
System.Data.Common (3)
System\Data\DataColumnPropertyDescriptor.cs (1)
47other is DataColumnPropertyDescriptor descriptor &&
System\Data\DataView.cs (2)
1131DataColumnPropertyDescriptor columnProperty = new DataColumnPropertyDescriptor(_index._indexFields[i].Column); 1656DataColumnPropertyDescriptor? NullProp = null;