IListControl.cs 362 B

12345678910111213141516171819
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : IListControl
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. namespace System.Web.UI.MobileControls
  11. {
  12. interface IListControl
  13. {
  14. void OnItemDataBind(ListDataBindEventArgs e);
  15. bool TrackingViewState { get; }
  16. }
  17. }