| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: RepeaterCommandEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public sealed class RepeaterCommandEventArgs: CommandEventArgs
- {
- private RepeaterItem rItem;
- private object cmdSrc;
- public RepeaterCommandEventArgs(RepeaterItem item, object commandSource, CommandEventArgs originalArgs): base(originalArgs)
- {
- rItem = item;
- cmdSrc = commandSource;
- }
- public object CommandSource
- {
- get
- {
- return cmdSrc;
- }
- }
-
- public RepeaterItem Item
- {
- get
- {
- return rItem;
- }
- }
- }
- }
|