4 references to ShutdownAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (3)
157public Task HandleShutdownRequestAsync(CancellationToken _) => ShutdownAsync(); 271/// Tells the LSP server to exit. Requires that <see cref="ShutdownAsync(string)"/> was called first. 341await ShutdownAsync(message: "Shutdown triggered by JsonRpc disconnect").ConfigureAwait(false);
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\RequestExecutionQueue.cs (1)
293await _languageServer.ShutdownAsync("Error processing queue, shutting down").ConfigureAwait(false);