1 instantiation of VSGetProjectContextsParams
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
ProjectContext\GetTextDocumentWithContextHandlerTests.cs (1)
113=> new LSP.VSGetProjectContextsParams()
9 references to VSGetProjectContextsParams
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\ProjectContext\GetTextDocumentWithContextHandler.cs (3)
22internal class GetTextDocumentWithContextHandler() : ILspServiceDocumentRequestHandler<VSGetProjectContextsParams, VSProjectContextList?> 27public TextDocumentIdentifier GetTextDocumentIdentifier(VSGetProjectContextsParams request) => new TextDocumentIdentifier { DocumentUri = request.TextDocument.DocumentUri }; 29public 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);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
ProjectContext\GetTextDocumentWithContextHandlerTests.cs (2)
108return await testLspServer.ExecuteRequestAsync<LSP.VSGetProjectContextsParams, LSP.VSProjectContextList?>(LSP.VSMethods.GetProjectContextsName, 112private static LSP.VSGetProjectContextsParams CreateGetProjectContextParams(DocumentUri uri)