4 instantiations of StreamingFindUsagesPresenterOptions
Microsoft.CodeAnalysis.EditorFeatures (4)
ExternalAccess\VSTypeScript\VSTypeScriptStreamingFindUsagesPresenterAccessor.cs (1)
24
var (context, cancellationToken) = _underlyingObject.StartSearch(title, new
StreamingFindUsagesPresenterOptions
() { SupportsReferences = supportsReferences });
GoOrFind\FindReferences\FindReferencesNavigationService.cs (1)
44
=>
new
()
Host\IStreamingFindReferencesPresenter.cs (1)
61
public static readonly StreamingFindUsagesPresenterOptions Default =
new
();
Navigation\AbstractDefinitionLocationService.cs (1)
242
var (context, _) = _streamingPresenter.StartSearch(title, new
StreamingFindUsagesPresenterOptions
(SupportsReferences: true));
7 references to StreamingFindUsagesPresenterOptions
Microsoft.CodeAnalysis.EditorFeatures (7)
GoOrFind\AbstractGoOrFindNavigationService.cs (2)
79
protected virtual
StreamingFindUsagesPresenterOptions
GetStreamingPresenterOptions(Document document)
80
=>
StreamingFindUsagesPresenterOptions
.Default;
GoOrFind\FindReferences\FindReferencesNavigationService.cs (1)
43
protected 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.
61
public static readonly
StreamingFindUsagesPresenterOptions
Default = new();
134
var (context, _) = presenter.StartSearch(title,
StreamingFindUsagesPresenterOptions
.Default);