5 implementations of HandleNotificationAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Configuration\DidChangeConfigurationNotificationHandler.cs (1)
66
public Task
HandleNotificationAsync
(DidChangeConfigurationParams request, RequestContext requestContext, CancellationToken cancellationToken)
Handler\DocumentChanges\DidCloseHandler.cs (1)
31
public async Task
HandleNotificationAsync
(LSP.DidCloseTextDocumentParams request, RequestContext context, CancellationToken cancellationToken)
Handler\DocumentChanges\DidOpenHandler.cs (1)
31
public async Task
HandleNotificationAsync
(LSP.DidOpenTextDocumentParams request, RequestContext context, CancellationToken cancellationToken)
Handler\ServerLifetime\InitializedHandler.cs (1)
22
public async Task
HandleNotificationAsync
(InitializedParams request, RequestContext requestContext, CancellationToken cancellationToken)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\Handlers\InitializedHandler.cs (1)
21
public 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)
203
await notificationHandler.
HandleNotificationAsync
(request, context, cancellationToken).ConfigureAwait(false);