RepeaterItemEventArgs.cs 651 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Class: RepeaterItemEventArgs
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Implementation: yes
  9. * Status: 100%
  10. *
  11. * (C) Gaurav Vaish (2002)
  12. */
  13. using System;
  14. using System.Web;
  15. using System.Web.UI;
  16. namespace System.Web.UI.WebControls
  17. {
  18. public sealed class RepeaterItemEventArgs : EventArgs
  19. {
  20. private RepeaterItem item;
  21. public RepeaterItemEventArgs(RepeaterItem item)
  22. {
  23. this.item = item;
  24. }
  25. public RepeaterItem Item
  26. {
  27. get
  28. {
  29. return item;
  30. }
  31. }
  32. }
  33. }