edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Array of prompts used for keyboard interactive (KBI) authentication.

Namespace: EnterpriseDT.Net.Ftp.Ssh
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public override SSHAuthPrompt[] KBIPrompts { get; set; }
Visual Basic
Public Overrides Property KBIPrompts As SSHAuthPrompt()
	Get
	Set
Visual C++
public:
virtual property array<SSHAuthPrompt^>^ KBIPrompts {
	array<SSHAuthPrompt^>^ get () override;
	void set (array<SSHAuthPrompt^>^ value) override;
}

Remarks

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.

See Also