edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
[SFTP/SCP Only] Passphrase of the private key file used to authenticate the client in SFTP/SCP.

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

Syntax

C#
public string ClientPrivateKeyPassphrase { get; set; }
Visual Basic
Public Property ClientPrivateKeyPassphrase As String
	Get
	Set
Visual C++
public:
property String^ ClientPrivateKeyPassphrase {
	String^ get ();
	void set (String^ value);
}

Field Value

Passphrase of the private key file used to authenticate the client.

Remarks

This property applies to SFTP/SCP only. Use the Protocol property to select the protocol.

This property must be set before a connection with the server is made. The SFTP server must have been set up with the corresponding public key before this authentication method is used. For this property to be used, AuthenticationMethod must be set to PublicKey or PublicKeyAndPassword.

See Also