7 references to VSGetProjectContextsParams
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\ProjectContext\GetTextDocumentWithContextHandler.cs (3)
20internal class GetTextDocumentWithContextHandler : ILspServiceDocumentRequestHandler<VSGetProjectContextsParams, VSProjectContextList?> 31public TextDocumentIdentifier GetTextDocumentIdentifier(VSGetProjectContextsParams request) => new TextDocumentIdentifier { Uri = request.TextDocument.Uri }; 33public Task<VSProjectContextList?> HandleRequestAsync(VSGetProjectContextsParams request, RequestContext context, CancellationToken cancellationToken)
Protocol\Extensions\VSGetProjectContextsParams.cs (1)
10/// <see cref="VSGetProjectContextsParams" /> represents the parameter that is sent
Protocol\Extensions\VSMethods.cs (3)
16/// This method has a parameter of type <see cref="VSGetProjectContextsParams" /> and a return value of type 26public static readonly LspRequest<VSGetProjectContextsParams, VSProjectContextList> GetProjectContexts = new LspRequest<VSGetProjectContextsParams, VSProjectContextList>(GetProjectContextsName);