| 1234567891011121314151617181920212223 |
- //
- // System.ComponentModel.IListSource.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- using System.Collections;
- namespace System.ComponentModel
- {
- /// <summary>
- /// Provides functionality to an object to return a list that can be bound to a data source.
- /// </summary>
- public interface IListSource
- {
- IList GetList ();
-
- bool ContainsListCollection { get; }
- }
- }
|