File: winforms\Managed\System\WinForms\TypeValidationEventHandler.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="ControlEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    /// <devdoc>
    ///      Describes a delegate for an event that has a TypeValidationEventArgs as a parameter.
    /// </devdoc>
    public delegate void TypeValidationEventHandler(object sender, TypeValidationEventArgs e);
}