9 implementations of ContainsListCollection
System.Data.Common (2)
System\Data\DataSet.cs (1)
650bool IListSource.ContainsListCollection => true;
System\Data\DataTable.cs (1)
2971bool IListSource.ContainsListCollection => false;
System.Windows.Forms.Tests (7)
System\Windows\Forms\ListBindingHelperTests.cs (7)
524public bool ContainsListCollection => throw new NotImplementedException(); 536public bool ContainsListCollection => throw new NotImplementedException(); 606public bool ContainsListCollection => throw new NotImplementedException(); 617public bool ContainsListCollection => throw new NotImplementedException(); 629public bool ContainsListCollection => throw new NotImplementedException(); 636public bool ContainsListCollection => throw new NotImplementedException(); 643public bool ContainsListCollection => throw new NotImplementedException();
2 references to ContainsListCollection
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1087bool isListofLists = (dataSourceInstance is IListSource listSource) && listSource.ContainsListCollection; 2138if (ils.ContainsListCollection)