MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / showPasswordInputBox

Function showPasswordInputBox

Extension/src/SSH/sshCommandRunner.ts:49–56  ·  view source on GitHub ↗
(
    user: string | undefined,
    prompt?: string,
    cancelToken?: vscode.CancellationToken
)

Source from the content-addressed store, hash-verified

47}
48
49export function showPasswordInputBox(
50 user: string | undefined,
51 prompt?: string,
52 cancelToken?: vscode.CancellationToken
53): Promise<string | undefined> {
54 const msg: string = user ? localize('ssh.enter.password.for.user', 'Enter password for user "{0}"', user) : localize('ssh.message.enter.password', 'Enter password');
55 return showInputBox(msg, prompt, cancelToken);
56}
57
58export function showVerificationCodeInputBox(
59 msg: string,

Callers

nothing calls this directly

Calls 1

showInputBoxFunction · 0.85

Tested by

no test coverage detected