18 lines
736 B
C#
18 lines
736 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ServerValidateEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.UI.WebControls {
|
||
|
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// <para>Represents the method that will handle the <see langword='ServerValidate'/> event of a
|
||
|
/// <see cref='System.Web.UI.WebControls.CustomValidator'/>.</para>
|
||
|
/// </devdoc>
|
||
|
public delegate void ServerValidateEventHandler(object source, ServerValidateEventArgs args);
|
||
|
|
||
|
}
|
||
|
|