3 implementations of GetItemProperties
System.Data.Common (2)
System\Data\DataView.cs (1)
1178PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[]? listAccessors)
System\Data\DataViewManager.cs (1)
282PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[]? listAccessors)
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1546public virtual PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[]? listAccessors)
7 references to GetItemProperties
PresentationFramework (2)
System\Windows\Data\BindingListCollectionView.cs (1)
2183pdc = itl.GetItemProperties(null);
System\Windows\Data\CollectionView.cs (1)
1446properties = itl.GetItemProperties(null);
PresentationFramework-SystemData (1)
SystemDataExtension.cs (1)
78pdc = ((ITypedList)table1.DefaultView).GetItemProperties(null);
System.Windows.Forms (4)
System\Windows\Forms\DataBinding\BindingManagerBase.cs (1)
88return typedList.GetItemProperties(properties);
System\Windows\Forms\DataBinding\ListBindingHelper.cs (3)
134pdc = typedList.GetItemProperties(null); 164return typedList.GetItemProperties(listAccessors); 584pdc = typedListEnumerable.GetItemProperties(null);