3 implementations of HandleNotificationAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\Configuration\DidChangeConfigurationNotificationHandler.cs (1)
65public async Task HandleNotificationAsync(DidChangeConfigurationParams request, RequestContext requestContext, CancellationToken cancellationToken)
Handler\ServerLifetime\InitializedHandler.cs (1)
22public async Task HandleNotificationAsync(InitializedParams request, RequestContext requestContext, CancellationToken cancellationToken)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\Handlers\InitializedHandler.cs (1)
21public Task HandleNotificationAsync(TRequest request, TRequestContext requestContext, CancellationToken cancellationToken)
1 reference to HandleNotificationAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\QueueItem.cs (1)
203await notificationHandler.HandleNotificationAsync(request, context, cancellationToken).ConfigureAwait(false);