Example #1
0
 /// <summary>
 /// Sends characters to the session.
 /// </summary>
 /// <remarks>
 /// To send enter you have to add '\n' at the end.
 /// </remarks>
 /// <example>
 /// Send("cmd.exe\n");
 /// </example>
 /// <param name="command">String to be sent to session</param>
 public void Send(string command)
 {
     _spawnable.Write(command);
 }