3 implementations of KeyPressed
dotnet-watch (1)
UI\PhysicalConsole.cs (1)
17public event Action<ConsoleKeyInfo>? KeyPressed;
dotnet-watch.Tests (2)
ConsoleReporterTests.cs (1)
53event Action<ConsoleKeyInfo> IConsole.KeyPressed
TestUtilities\TestConsole.cs (1)
10public event Action<ConsoleKeyInfo>? KeyPressed;
4 references to KeyPressed
dotnet-watch (4)
HotReload\HotReloadDotNetWatcher.cs (1)
52_console.KeyPressed += (key) =>
Program.cs (1)
160console.KeyPressed += key =>
UI\ConsoleInputReader.cs (2)
23console.KeyPressed += KeyPressed; 44console.KeyPressed -= KeyPressed;