public SIPSorceryShell(SIPSorceryIdentity sipSorceryIdentity)
 {
     m_sshVT100Server = new SIPSorceryVT100Server(sipSorceryIdentity.Customer);
     m_sshVT100Server.Closed += (sender, args) => { Close(); };
     StandardError = new StreamReader(m_sshVT100Server.ErrorStream);
     StandardOutput = new StreamReader(m_sshVT100Server.OutStream);
     StandardInput = new StreamWriter(m_sshVT100Server.InStream);
 }
 public SIPSorceryShell(SIPSorceryIdentity sipSorceryIdentity)
 {
     m_sshVT100Server         = new SIPSorceryVT100Server(sipSorceryIdentity.Customer);
     m_sshVT100Server.Closed += (sender, args) => { Close(); };
     StandardError            = new StreamReader(m_sshVT100Server.ErrorStream);
     StandardOutput           = new StreamReader(m_sshVT100Server.OutStream);
     StandardInput            = new StreamWriter(m_sshVT100Server.InStream);
 }