IObjectListFieldCollection.cs 528 B

1234567891011121314151617181920212223
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : IObjectListFieldCollection
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Collections;
  11. namespace System.Web.UI.MobileControls
  12. {
  13. public interface IObjectListFieldCollection : ICollection
  14. {
  15. ObjectListField this[int index] { get; }
  16. ObjectListField[] GetAll();
  17. int IndexOf(ObjectListField field);
  18. int IndexOf(string fieldID);
  19. }
  20. }