/// <summary>
 /// Read key.
 /// </summary>
 public override KeyInfo ReadKey(ReadKeyOptions options)
 {
     return(_serverMethodExecutor.ExecuteMethod <KeyInfo>(RemoteHostMethodId.ReadKey, new object[] { options }));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Read line.
 /// </summary>
 public override string ReadLine()
 {
     return(_serverMethodExecutor.ExecuteMethod <string>(RemoteHostMethodId.ReadLine));
 }