IListSource.ContainsListCollection 属性

定义

获取一个值,该值指示集合是否是 IList 对象的集合。

public:
 property bool ContainsListCollection { bool get(); };
public bool ContainsListCollection { get; }
member this.ContainsListCollection : bool
Public ReadOnly Property ContainsListCollection As Boolean

属性值

如果集合是 IList 对象集合,则为 true;否则,为 false

示例

下面的代码示例演示如何实现 IListSource 接口。 名为 的EmployeeListSource组件通过从 方法返回false指示它不包含 IList for 数据绑定。ContainsListCollection 有关完整代码列表,请参阅 如何:实现 IListSource 接口

bool IListSource.ContainsListCollection
{
    get { return false; }
}
Public ReadOnly Property ContainsListCollection() As Boolean Implements System.ComponentModel.IListSource.ContainsListCollection
    Get
        Return False
    End Get
End Property

注解

在 中使用 DataSet 此属性将 true 返回 , DataSet 因为 类包含集合的集合。 在 中使用 DataTable 此属性将 false 返回, DataTable 因为 类包含 对象的集合。

适用于

另请参阅