File: UI\WebControls\BulletedListEventHandler.cs
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web)
//------------------------------------------------------------------------------
// <copyright file="BulletedListEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------ 
 
namespace System.Web.UI.WebControls {
 
    using System;
    using System.Web.UI.WebControls;
 
 
    /// <devdoc>
    ///     <para>Represents the method that will handle the BulletedList click event.</para>
    /// </devdoc>
    public delegate void BulletedListEventHandler (object sender, BulletedListEventArgs e);
}