//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; /// /// Represents the method that will handle the event raised when canceling an /// event. /// [HostProtection(SharedState = true)] public delegate void CancelEventHandler(object sender, CancelEventArgs e); }