SSHFTPClientKBIPrompts Property
Array of prompts used for keyboard interactive (KBI) authentication.
Namespace: EnterpriseDT.Net.Ftp.SshAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.7.0.0
public override SSHAuthPrompt[] KBIPrompts { get; set; }
Public Overrides Property KBIPrompts As SSHAuthPrompt()
Get
Set
public:
virtual property array<SSHAuthPrompt^>^ KBIPrompts {
array<SSHAuthPrompt^>^ get () override;
void set (array<SSHAuthPrompt^>^ value) override;
}
abstract KBIPrompts : SSHAuthPrompt[] with get, set
override KBIPrompts : SSHAuthPrompt[] with get, set
Property Value
SSHAuthPrompt 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.