public SSHAuthPrompt[] KBIPrompts { get; set; }Public Property KBIPrompts As SSHAuthPrompt()
Get
Setpublic:
property array<SSHAuthPrompt^>^ KBIPrompts {
array<SSHAuthPrompt^>^ get ();
void set (array<SSHAuthPrompt^>^ value);
}member KBIPrompts : SSHAuthPrompt[] with get, setThis property applies to SFTP/SCP only. Use the Protocol property to select the protocol.
Setting this property sets up keyboard interactive authentication. The prompts that the server will send to the client must be known. For each prompt, an SSHAuthPrompt must be created with the matching prompt string and the response to be sent back to the server. Often, a single password prompt is all that is required, and a SSHPasswordPrompt is supplied for this purpose. For this property to be used, AuthenticationMethod must be set to KeyboardInteractive.