[SFTP/SCP Only] Array of prompts used for keyboard interactive (KBI) authentication.
Namespace: EnterpriseDT.Net.FtpAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40
Syntax
| C# |
|---|
public SSHAuthPrompt[] KBIPrompts { get; set; } |
| Visual Basic |
|---|
Public Property KBIPrompts As SSHAuthPrompt() Get Set |
| Visual C++ |
|---|
public: property array<SSHAuthPrompt^>^ KBIPrompts { array<SSHAuthPrompt^>^ get (); void set (array<SSHAuthPrompt^>^ value); } |
Remarks
This 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.