1 instantiation of ConsoleCancelEventArgs
System.Console (1)
System\Console.cs (1)
1045var args = new ConsoleCancelEventArgs(ctx.Signal == PosixSignal.SIGINT ? ConsoleSpecialKey.ControlC : ConsoleSpecialKey.ControlBreak);
9 references to ConsoleCancelEventArgs
aspire (1)
ConsoleCancellationManager.cs (1)
263private void OnCancelKeyPress(object? sender, ConsoleCancelEventArgs e)
dotnet-aot (1)
parent\dotnet\Commands\Test\MTP\CtrlCCancellationManager.cs (1)
88private void OnConsoleCancelKeyPress(object? sender, ConsoleCancelEventArgs e)
Microsoft.DotNet.Cli.Utils (1)
ProcessReaper.cs (1)
258private void HandleCancelKeyPress(object? sender, ConsoleCancelEventArgs e)
MSBuild (1)
XMake.cs (1)
1451private static void Console_CancelKeyPress(object sender, ConsoleCancelEventArgs e)
mscorlib (1)
parent\ref\mscorlib.cs (1)
128[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ConsoleCancelEventArgs))]
netstandard (1)
netstandard.cs (1)
432[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ConsoleCancelEventArgs))]
System.CommandLine (1)
Invocation\ProcessTerminationHandler.cs (1)
73void OnCancelKeyPress(object? sender, ConsoleCancelEventArgs e)
System.Console (2)
System\Console.cs (1)
1045var args = new ConsoleCancelEventArgs(ctx.Signal == PosixSignal.SIGINT ? ConsoleSpecialKey.ControlC : ConsoleSpecialKey.ControlBreak);
System\ConsoleCancelEventArgs.cs (1)
7public delegate void ConsoleCancelEventHandler(object? sender, ConsoleCancelEventArgs e);