File: winforms\Managed\System\WinForms\QuestionEventHandler.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="QuestionEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    using System;
    using System.Diagnostics;
 
    /// <include file='doc\QuestionEventHandler.uex' path='docs/doc[@for="QuestionEventHandler"]/*' />
    /// <devdoc>
    ///      Describes a delegate for an event that has a QuestionEventArgs as
    ///      a parameter.
    /// </devdoc>
    public delegate void QuestionEventHandler(object sender, QuestionEventArgs e);
}