CSharpUtils.VirtualFileSystem.Ssh.SftpFileSystem.Connect C# (CSharp) Метод

Connect() публичный Метод

public Connect ( string Host, int Port, string Username, string Password, int timeout = 10000 ) : void
Host string
Port int
Username string
Password string
timeout int
Результат void
		public override void Connect(string Host, int Port, string Username, string Password, int timeout = 10000)
		{
			this.Host = Host;
			this.Port = Port;
			this.Username = Username;
			this.Password = Password;
			this.timeout = timeout;
			_jsch = null;
		}