IListSource.ContainsListCollection Özellik
Tanım
public:
property bool ContainsListCollection { bool get(); };
public bool ContainsListCollection { get; }
member this.ContainsListCollection : bool
Public ReadOnly Property ContainsListCollection As Boolean
Özellik Değeri
true
koleksiyon bir IList nesneler koleksiyonudur; Aksi takdirde, false
.true
if the collection is a collection of IList objects; otherwise, false
.
Örnekler
Aşağıdaki kod örneği, arabirimin nasıl uygulanacağını gösterir IListSource .The following code example demonstrates how to implement the IListSource interface. Adlı bir bileşen EmployeeListSource
IList , yönteminden dönerek bir for Data Binding içermediğini belirtir false
ContainsListCollection .A component named EmployeeListSource
indicates that it does not contain an IList for data binding by returning false
from the ContainsListCollection method. Tam kod listesi için bkz. nasıl yapılır: ISource arabirimini uygulama.For a full code listing, see How to: Implement the IListSource Interface.
bool IListSource.ContainsListCollection
{
get { return false; }
}
Public ReadOnly Property ContainsListCollection() As Boolean Implements System.ComponentModel.IListSource.ContainsListCollection
Get
Return False
End Get
End Property
Açıklamalar
DataSet true
DataSet Sınıfı bir koleksiyonlar koleksiyonu içerdiğinden bu özelliğin kullanılması döndürülür.Using this property in DataSet returns true
because the DataSet class contains a collection of collections. DataTable false
DataTable Sınıfı bir nesne koleksiyonu içerdiğinden bu özelliğin kullanılması döndürülür.Using this property in DataTable returns false
because the DataTable class contains a collection of objects.