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