5 implementations of OnReferencesFoundAsync
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.ProgressAdapter.cs (1)
115
public async ValueTask
OnReferencesFoundAsync
(
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
34
public async ValueTask
OnReferencesFoundAsync
(
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
30
public ValueTask
OnReferencesFoundAsync
(ImmutableArray<(SymbolGroup group, ISymbol symbol, ReferenceLocation location)> references, CancellationToken cancellationToken) => default;
FindSymbols\FindReferences\StreamingFindReferencesProgress.cs (1)
52
public async ValueTask
OnReferencesFoundAsync
(ImmutableArray<(SymbolGroup group, ISymbol symbol, ReferenceLocation location)> references, CancellationToken cancellationToken)
FindSymbols\StreamingProgressCollector.cs (1)
69
public async ValueTask
OnReferencesFoundAsync
(
5 references to OnReferencesFoundAsync
Microsoft.CodeAnalysis.Workspaces (5)
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
72
consumeItems: static async (references, args, cancellationToken) => await args.@this._progress.
OnReferencesFoundAsync
(references, cancellationToken).ConfigureAwait(false),
FindSymbols\FindReferences\FindReferencesSearchEngine_FindReferencesInDocuments.cs (2)
156
await @this._progress.
OnReferencesFoundAsync
(converted, cancellationToken).ConfigureAwait(false);
194
await _progress.
OnReferencesFoundAsync
([(candidateGroup, candidate, location)], cancellationToken).ConfigureAwait(false);
FindSymbols\StreamingProgressCollector.cs (1)
78
await underlyingProgress.
OnReferencesFoundAsync
(references, cancellationToken).ConfigureAwait(false);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
97
await progress.
OnReferencesFoundAsync
(rehydrated.ToImmutableAndClear(), cancellationToken).ConfigureAwait(false);