File: System\ConsoleCancelEventArgs.cs
Web Access
Project: src\src\libraries\System.Console\src\System.Console.csproj (System.Console)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System
{
 
    public delegate void ConsoleCancelEventHandler(object? sender, ConsoleCancelEventArgs e);
 
    public sealed class ConsoleCancelEventArgs : EventArgs
    {
        private readonly ConsoleSpecialKey _type;
 
        internal ConsoleCancelEventArgs(ConsoleSpecialKey type)
        {
            _type = type;
        }
 
        // Whether to cancel the break event.  By setting this to true, the
        // Control-C will not kill the process.
        public bool Cancel
        {
            get; set;
        }
 
        public ConsoleSpecialKey SpecialKey
        {
            get { return _type; }
        }
    }
}