5 types derived from FindUsagesContext
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
FindUsages\FindUsagesTestContext.cs (1)
13internal sealed class FindUsagesTestContext : FindUsagesContext
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
FindReferences\FindReferencesCommandHandlerTests.cs (1)
29private sealed class MockFindUsagesContext : FindUsagesContext
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\FindUsages\SimpleFindUsagesContext.cs (1)
18internal sealed class SimpleFindUsagesContext : FindUsagesContext
Handler\References\FindUsagesLSPContext.cs (1)
31internal sealed class FindUsagesLSPContext : FindUsagesContext
Microsoft.VisualStudio.LanguageServices (1)
FindReferences\Contexts\AbstractTableDataSourceFindUsagesContext.cs (1)
39FindUsagesContext, ITableDataSource, ITableEntriesSnapshotFactory
14 references to FindUsagesContext
Microsoft.CodeAnalysis.EditorFeatures (6)
ExternalAccess\VSTypeScript\VSTypeScriptFindUsagesContext.cs (2)
13internal sealed class VSTypeScriptFindUsagesContext(FindUsagesContext underlyingObject) : IVSTypeScriptFindUsagesContext 15internal readonly FindUsagesContext UnderlyingObject = underlyingObject;
Host\IStreamingFindReferencesPresenter.cs (4)
23/// Tells the presenter that a search is starting. The returned <see cref="FindUsagesContext"/> 25/// <see cref="FindUsagesContext.OnReferencesFoundAsync"/> should be called. When the 26/// search completes <see cref="FindUsagesContext.OnCompletedAsync"/> should be called. 37(FindUsagesContext context, CancellationToken cancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
FindUsages\StubStreamingFindUsagesPresenter.cs (1)
25public (FindUsagesContext, CancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
FindReferences\FindReferencesCommandHandlerTests.cs (3)
46private readonly FindUsagesContext _context; 48public MockStreamingFindUsagesPresenter(FindUsagesContext context) 55public (FindUsagesContext, CancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\FindUsages\SimpleFindUsagesContext.cs (1)
15/// Simple implementation of a <see cref="FindUsagesContext"/> that just aggregates the results
Microsoft.VisualStudio.LanguageServices (2)
FindReferences\StreamingFindUsagesPresenter.cs (1)
172public (FindUsagesContext context, CancellationToken cancellationToken) StartSearch(string title, StreamingFindUsagesPresenterOptions options)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
542FindUsagesContext context,
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
26FindUsagesContext presenterContext,