IListSource.ContainsListCollection Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the collection is a collection of IList objects.
public:
 property bool ContainsListCollection { bool get(); };public bool ContainsListCollection { get; }member this.ContainsListCollection : boolPublic ReadOnly Property ContainsListCollection As BooleanProperty Value
true if the collection is a collection of IList objects; otherwise, false.
Examples
The following code example demonstrates how to implement the IListSource interface. A component named EmployeeListSource indicates that it does not contain an IList for data binding by returning false from the ContainsListCollection method. For a full code listing, see How to: Implement the IListSource Interface.
bool IListSource.ContainsListCollection => false;
Public ReadOnly Property ContainsListCollection() As Boolean Implements System.ComponentModel.IListSource.ContainsListCollection
    Get
        Return False
    End Get
End Property
Remarks
Using this property in DataSet returns true because the DataSet class contains a collection of collections. Using this property in DataTable returns false because the DataTable class contains a collection of objects.