3 instantiations of ReinvocationResponse
Microsoft.VisualStudio.LanguageServer.ContainedLanguage (2)
DefaultLSPRequestInvoker.cs (2)
94var reinvocationResponse = new ReinvocationResponse<TOut>(languageServerName, response); 155yield return new ReinvocationResponse<TOut>(response.client, response.response);
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
LanguageClient\TestLSPRequestInvoker.cs (1)
95return Task.FromResult(new ReinvocationResponse<TOut>(languageClientName: "html", (TOut?)response)).AsNullable();
15 references to ReinvocationResponse
Microsoft.VisualStudio.LanguageServer.ContainedLanguage (9)
DefaultLSPRequestInvoker.cs (5)
77public override async Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>(ITextBuffer textBuffer, string method, string languageServerName, TIn parameters, CancellationToken cancellationToken) 94var reinvocationResponse = new ReinvocationResponse<TOut>(languageServerName, response); 99public override Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>( 133public override IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 143public override async IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>(
LSPRequestInvoker.cs (4)
54public abstract Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>( 63public abstract Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>( 112public abstract IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 120public abstract IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>(
Microsoft.VisualStudio.LanguageServices.Razor (1)
LanguageClient\Cohost\HtmlRequestInvoker.cs (1)
73var result = await _requestInvoker.ReinvokeRequestOnServerAsync<TRequest, TResponse?>(
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (4)
LanguageClient\TestLSPRequestInvoker.cs (4)
44public override IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 54public override IAsyncEnumerable<ReinvocationResponse<TOut>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 84public override Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>( 99public override Task<ReinvocationResponse<TOut>?> ReinvokeRequestOnServerAsync<TIn, TOut>(
Microsoft.VisualStudio.RazorExtension (1)
SyntaxVisualizer\SyntaxVisualizerControl.xaml.cs (1)
194var lspResponse = await _lspRequestInvoker.ReinvokeRequestOnServerAsync<DocumentContentsRequest, string>(