//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
///
/// Provides data for the and
/// events.
///
public class RepeaterItemEventArgs : EventArgs {
private RepeaterItem item;
///
/// Initializes a new instance of the class.
///
public RepeaterItemEventArgs(RepeaterItem item) {
this.item = item;
}
///
/// Gets the associated with the event.
///
public RepeaterItem Item {
get {
return item;
}
}
}
}