14 lines
695 B
C#
14 lines
695 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ValidationEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">priyal</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Xml.Schema {
|
||
|
/// <include file='doc\ValidationEventHandler.uex' path='docs/doc[@for="ValidationEventHandler"]/*' />
|
||
|
/// <devdoc>
|
||
|
/// </devdoc>
|
||
|
public delegate void ValidationEventHandler( object sender, ValidationEventArgs e );
|
||
|
}
|