Implemented interface member:
27 references to Report
Microsoft.CodeAnalysis.LanguageServer (20)
LanguageServer\Handler\Restore\RestoreHandler.cs (4)
36progress.Report(new RestorePartialResult(LanguageServerResources.Restore, LanguageServerResources.Restore_started)); 42progress.Report(new RestorePartialResult(LanguageServerResources.Restore, LanguageServerResources.Nothing_found_to_restore)); 49progress.Report(new RestorePartialResult(LanguageServerResources.Restore, $"{LanguageServerResources.Restore_complete}{Environment.NewLine}")); 100progress.Report(new RestorePartialResult(stage, restoreOutput));
Testing\RunTestsHandler.cs (4)
151progress.Report(new RunTestsPartialResult(LanguageServerResources.Building_project, buildOutput, Progress: null)); 181progress.Report(new(LanguageServerResources.Discovering_tests, message, Progress: null)); 188progress.Report(new(LanguageServerResources.Discovering_tests, message, Progress: null)); 193progress.Report(new(LanguageServerResources.Discovering_tests, message, Progress: null));
Testing\TestDiscoverer.cs (4)
43progress.Report(partialResult); 51progress.Report(partialResult with { Message = LanguageServerResources.No_test_methods_found_in_requested_range }); 66progress.Report(partialResult with { Message = LanguageServerResources.Test_discovery_aborted }); 75progress.Report(partialResult with { Message = string.Format(LanguageServerResources.Found_0_tests_in_1, matchedTests.Length, RunTestsHandler.GetShortTimespan(elapsed)) });
Testing\TestDiscoverer.DiscoveryHandler.cs (1)
41_progress.Report(new RunTestsPartialResult(LanguageServerResources.Discovering_tests, message, Progress: null));
Testing\TestRunner.cs (1)
42progress.Report(new RunTestsPartialResult(LanguageServerResources.Running_tests, $"{Environment.NewLine}{LanguageServerResources.Starting_test_run}", initialProgress));
Testing\TestRunner.DebugTestHostLauncher.cs (2)
48progress.Report(new RunTestsPartialResult(LanguageServerResources.Debugging_tests, string.Format(LanguageServerResources.Attaching_debugger_to_process_0, processId), Progress: null)); 62progress.Report(new RunTestsPartialResult(LanguageServerResources.Debugging_tests, LanguageServerResources.Client_failed_to_attach_the_debugger, Progress: null));
Testing\TestRunner.TestRunHandler.cs (4)
51_progress.Report(partialResult); 56_progress.Report(partialResult with { Message = string.Format(LanguageServerResources.Test_run_error, testRunCompleteArgs.Error) }); 77_progress.Report(partialResult with { Message = message }); 87_progress.Report(new RunTestsPartialResult(LanguageServerResources.Running_tests, message, stats));
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Handler\BufferedProgress.cs (3)
60/// all calls to <see cref="Report(T)"/> have been made. Not safe to call concurrently with any call to <see 61/// cref="Report(T)"/>. 80progress.Report([item]);
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (4)
182progress.Report(report); 200progress.Report(CreateRemovedReport(previousDiagnosticParams.TextDocument)); 293progress.Report(report); 306progress.Report(CreateRemovedReport(removedResult.TextDocument));