7 references to Backspace
dotnet-svcutil-lib (1)
CmdCredentialsProvider.cs (1)
288else if (keyInfo.Key == ConsoleKey.Backspace && userInput.Length > 0)
System.Console (6)
System\IO\KeyParser.cs (3)
27return new ConsoleKeyInfo(buffer[startIndex++], ConsoleKey.Backspace, false, false, false); 320'\b' => ConsoleKey.Backspace, 325Delete => ConsoleKey.Backspace, // Ctrl+8 and Backspace are mapped to 127 (ASCII Delete key). Limitation: Ctrl+8 can't be mapped.
System\IO\StdInReader.cs (2)
168if (!consumeKeys && keyInfo.Key != ConsoleKey.Backspace) // backspace is the only character not written out in the below if/elses. 191else if (keyInfo.Key == ConsoleKey.Backspace)
System\TerminalFormatStrings.cs (1)
125AddKey(db, TermInfo.WellKnownStrings.KeyBackspace, ConsoleKey.Backspace);