StartReadingOutput() public méthode

Start reading asynchronously from the output and error streams
public StartReadingOutput ( ) : void
Résultat void
Exemple #1
0
 /// <summary>
 /// Initializes the Client
 /// </summary>
 /// <param name="path">Path to Neovim.exe</param>
 public NeovimClient(string path)
 {
     _io = new MsgPackIO(path, @"--embed --headless");
     _io.NotificationReceived += OnNotificationReceived;
     _io.StartReadingOutput();
 }
Exemple #2
0
 /// <summary>
 /// Initializes the Client
 /// </summary>
 /// <param name="path">Path to Neovim.exe</param>
 public NeovimClient(string path)
 {
     _io = new MsgPackIO(path, @"--embed --headless");
     _io.NotificationReceived += OnNotificationReceived;
     _io.StartReadingOutput();
 }