4 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));
7 references to StreamingFindUsagesPresenterOptions
Microsoft.CodeAnalysis.EditorFeatures (7)
GoOrFind\AbstractGoOrFindNavigationService.cs (2)
79protected virtual StreamingFindUsagesPresenterOptions GetStreamingPresenterOptions(Document document) 80=> 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);