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