6 implementations of OnFindInDocumentCompletedAsync
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.ProgressAdapter.cs (1)
93public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken) => default;
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
35public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken _) => new();
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SymbolFinder\RemoteSymbolFinderService.cs (1)
224public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
31public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken) => default;
FindSymbols\FindReferences\StreamingFindReferencesProgress.cs (1)
40public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken)
FindSymbols\StreamingProgressCollector.cs (1)
61public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken) => _underlyingProgress.OnFindInDocumentCompletedAsync(document, cancellationToken);
3 references to OnFindInDocumentCompletedAsync
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
279await _progress.OnFindInDocumentCompletedAsync(document, cancellationToken).ConfigureAwait(false);
FindSymbols\StreamingProgressCollector.cs (1)
61public ValueTask OnFindInDocumentCompletedAsync(Document document, CancellationToken cancellationToken) => _underlyingProgress.OnFindInDocumentCompletedAsync(document, cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
61await _progress.OnFindInDocumentCompletedAsync(document, cancellationToken).ConfigureAwait(false);