ObjectList.cs 558 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : ObjectList
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.Web.UI;
  12. namespace System.Web.UI.MobileControls
  13. {
  14. public class ObjectList // : PagedControl, INamingContainer,
  15. // ITemplateable, IPostBackEventHander
  16. {
  17. public ObjectList()
  18. {
  19. }
  20. public IObjectListFieldCollection AllFields
  21. {
  22. get
  23. {
  24. throw new NotImplementedException();
  25. }
  26. }
  27. }
  28. }