Creates a new parameters instance.

Namespace: Jscape.Ssh
Assembly: Jscape.Ssh (in Jscape.Ssh.dll) Version: 2.7.2.0

Syntax

C#
public SshParameters(
	string hostname,
	int port,
	string username,
	string password
)
Visual Basic
Public Sub New ( _
	hostname As String, _
	port As Integer, _
	username As String, _
	password As String _
)
Visual C++
public:
SshParameters(
	String^ hostname, 
	int port, 
	String^ username, 
	String^ password
)

Parameters

hostname
Type: System..::..String
the hostname
port
Type: System..::..Int32
the port
username
Type: System..::..String
the username
password
Type: System..::..String
the user password

See Also