6 instantiations of StreamingFindUsagesPresenterOptions
Microsoft.CodeAnalysis.EditorFeatures (4)
ExternalAccess\VSTypeScript\VSTypeScriptStreamingFindUsagesPresenterAccessor.cs (1)
24var (context, cancellationToken) = _underlyingObject.StartSearch(title, new StreamingFindUsagesPresenterOptions() { SupportsReferences = supportsReferences });
GoOrFind\FindReferences\FindReferencesNavigationService.cs (1)
44=> new()
Host\IStreamingFindReferencesPresenter.cs (1)
61public static readonly StreamingFindUsagesPresenterOptions Default = new();
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 });
12 references to StreamingFindUsagesPresenterOptions
Microsoft.CodeAnalysis.EditorFeatures (7)
GoOrFind\AbstractGoOrFindNavigationService.cs (2)
78protected virtual StreamingFindUsagesPresenterOptions GetStreamingPresenterOptions(Document document) 79=> StreamingFindUsagesPresenterOptions.Default;
GoOrFind\FindReferences\FindReferencesNavigationService.cs (1)
43protected override StreamingFindUsagesPresenterOptions GetStreamingPresenterOptions(Document document)
Host\IStreamingFindReferencesPresenter.cs (4)
37(FindUsagesContext context, CancellationToken cancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options); 46/// <see cref="IStreamingFindUsagesPresenter.StartSearch(string, StreamingFindUsagesPresenterOptions)"/> options. 61public static readonly StreamingFindUsagesPresenterOptions Default = new(); 134var (context, _) = presenter.StartSearch(title, StreamingFindUsagesPresenterOptions.Default);
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)
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);