9 implementations of ContainsListCollection
System.Data.Common (2)
System\Data\DataSet.cs (1)
654bool IListSource.ContainsListCollection => true;
System\Data\DataTable.cs (1)
2976bool IListSource.ContainsListCollection => false;
System.Windows.Forms.Tests (7)
System\Windows\Forms\ListBindingHelperTests.cs (7)
526public bool ContainsListCollection => throw new NotImplementedException(); 538public bool ContainsListCollection => throw new NotImplementedException(); 608public bool ContainsListCollection => throw new NotImplementedException(); 619public bool ContainsListCollection => throw new NotImplementedException(); 631public bool ContainsListCollection => throw new NotImplementedException(); 638public bool ContainsListCollection => throw new NotImplementedException(); 645public bool ContainsListCollection => throw new NotImplementedException();
2 references to ContainsListCollection
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1086bool isListofLists = (dataSourceInstance is IListSource listSource) && listSource.ContainsListCollection; 2140if (ils.ContainsListCollection)