4 instantiations of DataTablePropertyDescriptor
System.Data.Common (4)
System\Data\DataView.cs (1)
507OnListChanged(new ListChangedEventArgs(ListChangedType.PropertyDescriptorChanged, new DataTablePropertyDescriptor(_table)));
System\Data\DataViewManager.cs (2)
334e.Action == CollectionChangeAction.Add ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorAdded, new DataTablePropertyDescriptor((System.Data.DataTable)e.Element!)) : 336e.Action == CollectionChangeAction.Remove ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorDeleted, new DataTablePropertyDescriptor((System.Data.DataTable)e.Element!)) :
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
124props[i] = new DataTablePropertyDescriptor(dataSet.Tables[i]);
3 references to DataTablePropertyDescriptor
System.Data.Common (3)
System\Data\DataSet.cs (2)
3354if (currentProp is DataTablePropertyDescriptor) 3356return FindTable(((DataTablePropertyDescriptor)currentProp).Table, props, propStart + 1);
System\Data\DataTablePropertyDescriptor.cs (1)
25other is DataTablePropertyDescriptor descriptor &&