Ejemplo n.º 1
0
 public SSHLoginParameter(SSHLoginParameter src)
     : base(src)
 {
     _method               = src._method;
     _authType             = src._authType;
     _account              = src._account;
     _identityFile         = src._identityFile;
     _passwordOrPassphrase = src._passwordOrPassphrase;
     _letUserInputPassword = src._letUserInputPassword;
     _agentForward         = src._agentForward;
 }
Ejemplo n.º 2
0
 public AgentForwardingChannel(IAgentForward client)
 {
     _client = client;
     _buffer = new SimpleMemoryStream();
 }
Ejemplo n.º 3
0
 public SSHLoginParameter(SSHLoginParameter src)
     : base(src) {
     _method = src._method;
     _authType = src._authType;
     _account = src._account;
     _identityFile = src._identityFile;
     _passwordOrPassphrase = src._passwordOrPassphrase;
     _letUserInputPassword = src._letUserInputPassword;
     _agentForward = src._agentForward;
 }
Ejemplo n.º 4
0
 public AgentForwardingChannel(IAgentForward client) {
     _client = client;
     _buffer = new SimpleMemoryStream();
 }