IListSource.cs 408 B

1234567891011121314151617181920212223
  1. //
  2. // System.ComponentModel.IListSource.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. using System.Collections;
  10. namespace System.ComponentModel
  11. {
  12. /// <summary>
  13. /// Provides functionality to an object to return a list that can be bound to a data source.
  14. /// </summary>
  15. public interface IListSource
  16. {
  17. IList GetList ();
  18. bool ContainsListCollection { get; }
  19. }
  20. }