6 implementations of HandleNotificationAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Handler\Configuration\DidChangeConfigurationNotificationHandler.cs (1)
66
public async Task
HandleNotificationAsync
(DidChangeConfigurationParams request, RequestContext requestContext, CancellationToken cancellationToken)
Handler\DocumentChanges\DidCloseHandler.cs (1)
27
public async Task
HandleNotificationAsync
(LSP.DidCloseTextDocumentParams request, RequestContext context, CancellationToken cancellationToken)
Handler\DocumentChanges\DidOpenHandler.cs (1)
28
public async Task
HandleNotificationAsync
(LSP.DidOpenTextDocumentParams request, RequestContext context, CancellationToken cancellationToken)
Handler\Extensions\DeactivateExtensionHandler.cs (1)
23
public async Task
HandleNotificationAsync
(DeactivateExtensionParams 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);