4 references to ShutdownAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (3)
161public Task HandleShutdownRequestAsync(CancellationToken _) => ShutdownAsync(); 275/// Tells the LSP server to exit. Requires that <see cref="ShutdownAsync(string)"/> was called first. 355await ShutdownAsync(message: $"Shutdown triggered by JsonRpc disconnect {e.Reason}").ConfigureAwait(false);
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\RequestExecutionQueue.cs (1)
296await _languageServer.ShutdownAsync(message).ConfigureAwait(false);