7 references to Escape
dotnet (1)
InteractiveConsole.cs (1)
46
if ((acceptEscapeForFalse && key.Key == ConsoleKey.
Escape
) || KeyMatches(key, CliCommandStrings.ConfirmationPromptNoValue))
dotnet-svcutil-lib (3)
CmdCredentialsProvider.cs (3)
262
while (keyInfo.Key != ConsoleKey.Enter && keyInfo.Key != ConsoleKey.
Escape
);
265
if (keyInfo.Key == ConsoleKey.
Escape
&& throwOnEscape)
283
if (keyInfo.Key == ConsoleKey.
Escape
)
Microsoft.DotNet.HotReload.Watch (2)
UI\ConsoleInputReader.cs (1)
16
return new ConsoleKeyInfo('\u001b', ConsoleKey.
Escape
, shift: false, alt: false, control: false);
UI\RestartPrompt.cs (1)
27
case ConsoleKey.
Escape
:
System.Console (1)
System\IO\KeyParser.cs (1)
324
Escape => ConsoleKey.
Escape
, // Ctrl+[ and Ctrl+3 are also mapped to 27. Limitation: Ctrl+[ and Ctrl+3 can't be mapped.