Exemplo n.º 1
0
 public static SshCommand BeginCommand(this SshClient ssh, string commandText, IVsOutputWindowPane outputPane, out IAsyncResult asyncResult)
 {
     return(ssh.BeginCommand(commandText, outputPane, null, out asyncResult));
 }
Exemplo n.º 2
0
 public static SshCommand BeginCommand(this SshClient ssh, string commandText, Action <string> output, out IAsyncResult asyncResult)
 {
     return(ssh.BeginCommand(commandText, output, null, out asyncResult));
 }
Exemplo n.º 3
0
        public static SshCommand BeginCommand(this SshClient ssh, string commandText, IVsOutputWindowPane outputPane, AsyncCallback callback)
        {
            IAsyncResult asyncResult;

            return(ssh.BeginCommand(commandText, outputPane, out asyncResult));
        }
Exemplo n.º 4
0
        public static SshCommand BeginCommand(this SshClient ssh, string commandText, Action <string> output, AsyncCallback callback)
        {
            IAsyncResult asyncResult;

            return(ssh.BeginCommand(commandText, output, out asyncResult));
        }