6 implementations of OnFindInDocumentStartedAsync
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.ProgressAdapter.cs (1)
92public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken) => default;
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
37public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken _) => new();
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SymbolFinder\RemoteSymbolFinderService.cs (1)
221public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
30public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken) => default;
FindSymbols\FindReferences\StreamingFindReferencesProgress.cs (1)
46public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken)
FindSymbols\StreamingProgressCollector.cs (1)
62public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken) => _underlyingProgress.OnFindInDocumentStartedAsync(document, cancellationToken);
3 references to OnFindInDocumentStartedAsync
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
255await _progress.OnFindInDocumentStartedAsync(document, cancellationToken).ConfigureAwait(false);
FindSymbols\StreamingProgressCollector.cs (1)
62public ValueTask OnFindInDocumentStartedAsync(Document document, CancellationToken cancellationToken) => _underlyingProgress.OnFindInDocumentStartedAsync(document, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
55await _progress.OnFindInDocumentStartedAsync(document, cancellationToken).ConfigureAwait(false);