4 instantiations of DataTablePropertyDescriptor
System.Data (4)
fx\src\data\System\Data\DataView.cs (1)
569OnListChanged(new ListChangedEventArgs(ListChangedType.PropertyDescriptorChanged, new DataTablePropertyDescriptor(table)));
fx\src\data\System\Data\DataViewManager.cs (2)
366e.Action == CollectionChangeAction.Add ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorAdded, new DataTablePropertyDescriptor((System.Data.DataTable)e.Element)) : 368e.Action == CollectionChangeAction.Remove ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorDeleted, new DataTablePropertyDescriptor((System.Data.DataTable)e.Element)) :
fx\src\data\System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
134props[i] = new DataTablePropertyDescriptor(dataSet.Tables[i]);
5 references to DataTablePropertyDescriptor
System.Data (5)
fx\src\data\System\Data\DataSet.cs (2)
3098if (currentProp is DataTablePropertyDescriptor) { 3099return FindTable(((DataTablePropertyDescriptor)currentProp).Table, props, propStart + 1);
fx\src\data\System\Data\DataTablePropertyDescriptor.cs (3)
47if (other is DataTablePropertyDescriptor) { 48DataTablePropertyDescriptor descriptor = (DataTablePropertyDescriptor) other;