2 instantiations of ReinvokeResponse
Microsoft.VisualStudio.LanguageServer.ContainedLanguage (2)
DefaultLSPRequestInvoker.cs (2)
62var result = response is not null ? new ReinvokeResponse<TOut>(languageClient: null!, response) : default; 126responses.Add(new ReinvokeResponse<TOut>(languageClient: null!, reinvokeResponse.response!));
17 references to ReinvokeResponse
Microsoft.VisualStudio.LanguageServer.ContainedLanguage (11)
DefaultLSPRequestInvoker.cs (7)
35public override Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>(string method, string contentType, TIn parameters, CancellationToken cancellationToken) 41public override Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>(string method, string contentType, Func<JToken, bool> capabilitiesFilter, TIn parameters, CancellationToken cancellationToken) 46public override async Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>( 62var result = response is not null ? new ReinvokeResponse<TOut>(languageClient: null!, response) : default; 67public override Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>( 110private async Task<IEnumerable<ReinvokeResponse<TOut>>> RequestMultipleServerCoreAsync<TIn, TOut>(string method, TIn parameters, CancellationToken cancellationToken) 122using var responses = new PooledArrayBuilder<ReinvokeResponse<TOut>>();
LSPRequestInvoker.cs (4)
26public abstract Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>( 46public abstract Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>( 84public abstract Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 104public abstract Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>(
Microsoft.VisualStudio.LanguageServices.Razor (2)
ProjectSystem\LSPRequestInvokerWrapper.cs (1)
22public Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>(
ProjectSystem\RenameProjectTreeHandler.cs (1)
57var response = await _projectAsynchronousTasksService.LoadedProjectAsync(() => _requestInvoker.Value.ReinvokeRequestOnServerAsync<RenameFilesParams, WorkspaceEdit?>(
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (4)
LanguageClient\TestLSPRequestInvoker.cs (4)
24public override Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 34public override Task<IEnumerable<ReinvokeResponse<TOut>>> ReinvokeRequestOnMultipleServersAsync<TIn, TOut>( 64public override Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>( 74public override Task<ReinvokeResponse<TOut>> ReinvokeRequestOnServerAsync<TIn, TOut>(