3 implementations of StartSearch
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
FindUsages\StubStreamingFindUsagesPresenter.cs (1)
25public (FindUsagesContext, CancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
FindReferences\FindReferencesCommandHandlerTests.cs (1)
55public (FindUsagesContext, CancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
Microsoft.VisualStudio.LanguageServices (1)
FindReferences\StreamingFindUsagesPresenter.cs (1)
172public (FindUsagesContext context, CancellationToken cancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
9 references to StartSearch
Microsoft.CodeAnalysis.EditorFeatures (5)
ExternalAccess\VSTypeScript\VSTypeScriptStreamingFindUsagesPresenterAccessor.cs (1)
24var (context, cancellationToken) = _underlyingObject.StartSearch(title, new StreamingFindUsagesPresenterOptions() { SupportsReferences = supportsReferences });
GoOrFind\AbstractGoOrFindNavigationService.cs (1)
225var (presenterContext, presenterCancellationToken) = _streamingPresenter.StartSearch(DisplayName, GetStreamingPresenterOptions(document));
Host\IStreamingFindReferencesPresenter.cs (2)
46/// <see cref="IStreamingFindUsagesPresenter.StartSearch(string, StreamingFindUsagesPresenterOptions)"/> options. 134var (context, _) = presenter.StartSearch(title, StreamingFindUsagesPresenterOptions.Default);
Navigation\AbstractDefinitionLocationService.cs (1)
242var (context, _) = _streamingPresenter.StartSearch(title, new StreamingFindUsagesPresenterOptions(SupportsReferences: true));
Microsoft.CodeAnalysis.ExternalAccess.Debugger (1)
DebuggerFindReferencesService.cs (1)
38var (context, _) = streamingPresenter.StartSearch(EditorFeaturesResources.Find_References, new StreamingFindUsagesPresenterOptions { SupportsReferences = true });
Microsoft.VisualStudio.LanguageServices (1)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
518var (context, cancellationToken) = presenter.StartSearch(EditorFeaturesResources.Find_References, new StreamingFindUsagesPresenterOptions { SupportsReferences = true });
Microsoft.VisualStudio.LanguageServices.CSharp (2)
SemanticSearch\SemanticSearchPresenterController.cs (1)
34var (presenterContext, presenterCancellationToken) = resultsPresenter.StartSearch(ServicesVSResources.Semantic_search_results, StreamingFindUsagesPresenterOptions.Default);
SemanticSearch\SemanticSearchToolWindowImpl.cs (1)
417var (presenterContext, presenterCancellationToken) = resultsPresenter.StartSearch(ServicesVSResources.Semantic_search_results, StreamingFindUsagesPresenterOptions.Default);