//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { using System; /// /// Provides data for the /// event of the . /// public class RepeaterCommandEventArgs : CommandEventArgs { private RepeaterItem item; private object commandSource; /// /// Initializes a new instance of the /// class. /// public RepeaterCommandEventArgs(RepeaterItem item, object commandSource, CommandEventArgs originalArgs) : base(originalArgs) { this.item = item; this.commandSource = commandSource; } /// /// Gets the associated with the event. /// public RepeaterItem Item { get { return item; } } /// /// Gets the command source. /// public object CommandSource { get { return commandSource; } } } }