3 implementations of ITypedList
System.Data.Common (2)
System\Data\DataView.cs (1)
24public class DataView : MarshalByValueComponent, IBindingListView, System.ComponentModel.ITypedList, ISupportInitializeNotification
System\Data\DataViewManager.cs (1)
15public class DataViewManager : MarshalByValueComponent, IBindingList, System.ComponentModel.ITypedList
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
19ITypedList,
21 references to ITypedList
netstandard (1)
netstandard.cs (1)
359[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ITypedList))]
PresentationFramework (4)
System\Windows\Data\BindingListCollectionView.cs (2)
2178ITypedList itl; 2181if ((itl = InternalList as ITypedList) != null)
System\Windows\Data\CollectionView.cs (2)
1439ITypedList itl = collection as ITypedList;
PresentationFramework-SystemData (1)
SystemDataExtension.cs (1)
78pdc = ((ITypedList)table1.DefaultView).GetItemProperties(null);
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
345[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ITypedList))]
System.Data.Common (4)
System\Data\DataView.cs (2)
1154string System.ComponentModel.ITypedList.GetListName(PropertyDescriptor[]? listAccessors) 1178PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[]? listAccessors)
System\Data\DataViewManager.cs (2)
259string System.ComponentModel.ITypedList.GetListName(PropertyDescriptor[]? listAccessors) 282PropertyDescriptorCollection System.ComponentModel.ITypedList.GetItemProperties(PropertyDescriptor[]? listAccessors)
System.Windows.Forms (10)
System\Windows\Forms\DataBinding\BindingManagerBase.cs (1)
84if (list is ITypedList typedList)
System\Windows\Forms\DataBinding\BindingSource.cs (2)
664if (typeof(ITypedList).IsAssignableFrom(type) && typeof(IList).IsAssignableFrom(type)) 1550if (ds is ITypedList && !string.IsNullOrEmpty(_dataMember))
System\Windows\Forms\DataBinding\CurrencyManager.cs (2)
583_list is ITypedList typedList 597if (_list is ITypedList typedList)
System\Windows\Forms\DataBinding\ListBindingHelper.cs (5)
84if (list is ITypedList typedList) 132if (target is ITypedList typedList) 162if (target is ITypedList typedList) 495typeof(ITypedList).IsAssignableFrom(type) || 582if (enumerable is ITypedList typedListEnumerable)