2 implementations of OnReferenceFoundAsync
Microsoft.CodeAnalysis.Features (1)
FindUsages\AbstractFindUsagesService.ProgressAdapter.cs (1)
34public async ValueTask OnReferenceFoundAsync(Document document, TextSpan span, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SymbolFinder\RemoteSymbolFinderService.cs (1)
187public ValueTask OnReferenceFoundAsync(Document document, TextSpan span, CancellationToken cancellationToken)
2 references to OnReferenceFoundAsync
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindLiterals\FindLiteralsSearchEngine.cs (1)
147await _progress.OnReferenceFoundAsync(document, token.Span, cancellationToken).ConfigureAwait(false);
FindSymbols\SymbolFinder.FindLiteralsServerCallback.cs (1)
27await progress.OnReferenceFoundAsync(document, span, cancellationToken).ConfigureAwait(false);