コード例 #1
0
 public async Task Close()
 {
     try
     {
         await MakeCall("close", null, CancellationToken.None);
     }
     catch
     {
         // nothing to do if the call failed
     }
     eslintBridgeProcess.Stop();
 }
コード例 #2
0
 private void StopServer()
 {
     eslintBridgeClient?.Dispose();
     eslintBridgeProcess?.Stop();
 }