19 lines
754 B
C#
19 lines
754 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="DetailsViewModeEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.UI.WebControls {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// <para>Represents the method that will handle the
|
||
|
/// <see langword='DetailsViewMode'/> event of a <see cref='System.Web.UI.WebControls.DetailsView'/> .</para>
|
||
|
/// </devdoc>
|
||
|
public delegate void DetailsViewModeEventHandler(object sender, DetailsViewModeEventArgs e);
|
||
|
}
|
||
|
|