3 implementations of 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)
56
public 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)
71
consumeItems: static async (references, args, cancellationToken) => await args.@this._progress.
OnReferencesFoundAsync
(references, cancellationToken).ConfigureAwait(false),
FindSymbols\FindReferences\FindReferencesSearchEngine_FindReferencesInDocuments.cs (2)
158
await @this._progress.
OnReferencesFoundAsync
(converted, cancellationToken).ConfigureAwait(false);
196
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);