IListSource

IListSource

System.ComponentModel (system.dll) interface

This interface is implemented by classes (such as System.Data.DataSet and System.Data.DataTable ) that can provide one or more lists for a data-binding scenario but are not actually bindable lists in and of themselves .

The ContainsListCollection property determines whether the list is actually a collection of lists itself (as in the System.Data.DataSet - System.Data.DataTable relationship), and the GetList() method returns the System.Collections.IList for the binding scenario.

 public interface  IListSource  {  // Public Instance Properties  public bool  ContainsListCollection  {get; }  // Public Instance Methods  public IList  GetList  (); } 


. Net Windows Forms in a Nutshell
.NET Windows Forms in a Nutshell
ISBN: 0596003382
EAN: 2147483647
Year: 2002
Pages: 794

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net