1 implementation of SendNotificationAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\LanguageServerNotificationManager.cs (1)
38public async ValueTask SendNotificationAsync<TParams>(string methodName, TParams @params, CancellationToken cancellationToken)
5 references to SendNotificationAsync
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorClientLanguageServerManager.cs (1)
26=> clientLanguageServerManager.SendNotificationAsync(methodName, @params, cancellationToken);
Microsoft.CodeAnalysis.LanguageServer (3)
HostWorkspace\ProjectTelemetry\ProjectLoadTelemetryReporter.cs (1)
96await clientLanguageServerManager.SendNotificationAsync("workspace/projectConfigurationTelemetry", telemetryEvent, cancellationToken);
Logging\LspLogMessageLogger.cs (1)
80var _ = server.GetRequiredLspService<IClientLanguageServerManager>().SendNotificationAsync(logMethod, new LogMessageParams()
Logging\ShowToastNotification.cs (1)
32await languageServerManager.SendNotificationAsync(ShowToastNotificationName, toastParams, cancellationToken);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\ServerLifetime\LspServiceLifeCycleManager.cs (1)
60await _clientLanguageServerManager.SendNotificationAsync("window/logMessage", messageParams, cancellationToken).ConfigureAwait(false);