4 implementations of ReportInformationalMessageAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
172async ValueTask IFindUsagesContext.ReportInformationalMessageAsync(string message, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.DefinitionTrackingContext.cs (1)
42public ValueTask ReportInformationalMessageAsync(string message, CancellationToken cancellationToken)
FindUsages\FindUsagesContext.cs (1)
26public virtual ValueTask ReportInformationalMessageAsync(string message, CancellationToken cancellationToken) => default;
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\FindUsages\RemoteFindUsagesService.cs (1)
107public ValueTask ReportInformationalMessageAsync(string message, CancellationToken cancellationToken)
5 references to ReportInformationalMessageAsync
Microsoft.CodeAnalysis.EditorFeatures (3)
FindUsages\BufferedFindUsagesContext.cs (2)
112await presenterContext.ReportInformationalMessageAsync(_state.InformationalMessage, cancellationToken).ConfigureAwait(false); 177await _streamingPresenterContext.ReportInformationalMessageAsync(message, cancellationToken).ConfigureAwait(false);
GoToDefinition\AbstractGoToCommandHandler`2.cs (1)
266await findContext.ReportInformationalMessageAsync(
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.DefinitionTrackingContext.cs (1)
43=> _underlyingContext.ReportInformationalMessageAsync(message, cancellationToken);
FindUsages\IRemoteFindUsagesService.cs (1)
112=> _context.ReportInformationalMessageAsync(message, cancellationToken);