10 implementations of ITypedList
System.Data.Common (2)
System\Data\DataView.cs (1)
24
public class DataView : MarshalByValueComponent, IBindingListView, System.ComponentModel.
ITypedList
, ISupportInitializeNotification
System\Data\DataViewManager.cs (1)
15
public class DataViewManager : MarshalByValueComponent, IBindingList, System.ComponentModel.
ITypedList
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
19
ITypedList
,
System.Windows.Forms.Tests (7)
System\Windows\Forms\BindingSourceTests.cs (3)
842
private class PrivateDefaultConstructor : List<int>,
ITypedList
857
private class NoDefaultConstructor : List<int>,
ITypedList
874
private class ThrowingDefaultConstructor : List<int>,
ITypedList
System\Windows\Forms\ListBindingHelperTests.cs (4)
541
private class ITypedListClassWithItem : ClassWithItem,
ITypedList
554
private class ITypedListClassWithCustomNamedItem :
ITypedList
693
private class NonEnumerableITypedListImplementor :
ITypedList
708
private class EnumerableITypedListImplementor :
ITypedList
, IEnumerable
27 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)
2200
ITypedList
itl;
2203
if ((itl = InternalList as
ITypedList
) != null)
System\Windows\Data\CollectionView.cs (2)
1456
ITypedList
itl = collection as
ITypedList
;
PresentationFramework-SystemData (1)
SystemDataExtension.cs (1)
73
pdc = ((
ITypedList
)table1.DefaultView).GetItemProperties(null);
System (1)
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)
1154
string System.ComponentModel.
ITypedList
.GetListName(PropertyDescriptor[]? listAccessors)
1178
PropertyDescriptorCollection System.ComponentModel.
ITypedList
.GetItemProperties(PropertyDescriptor[]? listAccessors)
System\Data\DataViewManager.cs (2)
259
string System.ComponentModel.
ITypedList
.GetListName(PropertyDescriptor[]? listAccessors)
282
PropertyDescriptorCollection System.ComponentModel.
ITypedList
.GetItemProperties(PropertyDescriptor[]? listAccessors)
System.Windows.Forms (10)
System\Windows\Forms\DataBinding\BindingManagerBase.cs (1)
84
if (list is
ITypedList
typedList)
System\Windows\Forms\DataBinding\BindingSource.cs (2)
664
if (typeof(
ITypedList
).IsAssignableFrom(type) && typeof(IList).IsAssignableFrom(type))
1549
if (ds is
ITypedList
&& !string.IsNullOrEmpty(_dataMember))
System\Windows\Forms\DataBinding\CurrencyManager.cs (2)
583
_list is
ITypedList
typedList
597
if (_list is
ITypedList
typedList)
System\Windows\Forms\DataBinding\ListBindingHelper.cs (5)
84
if (list is
ITypedList
typedList)
132
if (target is
ITypedList
typedList)
162
if (target is
ITypedList
typedList)
494
typeof(
ITypedList
).IsAssignableFrom(type) ||
581
if (enumerable is
ITypedList
typedListEnumerable)
System.Windows.Forms.Tests (6)
System\Windows\Forms\ListBindingHelperTests.cs (6)
191
Mock<
ITypedList
> nullMockTypedList = new(MockBehavior.Strict);
272
Mock<
ITypedList
> mockTypedList = new(MockBehavior.Strict);
276
Mock<
ITypedList
> nullMockTypedList = new(MockBehavior.Strict);
354
Mock<
ITypedList
> mockTypedList = new(MockBehavior.Strict);
358
Mock<
ITypedList
> nullMockTypedList = new(MockBehavior.Strict);
465
Mock<
ITypedList
> mockTypedList = new(MockBehavior.Strict);