4 implementations of ReportMessageAsync
Microsoft.CodeAnalysis.EditorFeatures (1)
FindUsages\BufferedFindUsagesContext.cs (1)
167async ValueTask IFindUsagesContext.ReportMessageAsync(string message, NotificationSeverity severity, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.DefinitionTrackingContext.cs (1)
36public ValueTask ReportMessageAsync(string message, NotificationSeverity severity, CancellationToken cancellationToken)
FindUsages\FindUsagesContext.cs (1)
24public virtual ValueTask ReportMessageAsync(string message, NotificationSeverity severity, CancellationToken cancellationToken) => default;
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\FindUsages\RemoteFindUsagesService.cs (1)
104public ValueTask ReportMessageAsync(string message, NotificationSeverity severity, CancellationToken cancellationToken)
5 references to ReportMessageAsync
Microsoft.CodeAnalysis.EditorFeatures (3)
FindUsages\BufferedFindUsagesContext.cs (2)
108await presenterContext.ReportMessageAsync(_state.InformationalMessage, NotificationSeverity.Information, cancellationToken).ConfigureAwait(false); 172await _streamingPresenterContext.ReportMessageAsync(message, severity, cancellationToken).ConfigureAwait(false);
GoOrFind\AbstractGoOrFindNavigationService.cs (1)
274await findContext.ReportMessageAsync(
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.DefinitionTrackingContext.cs (1)
37=> _underlyingContext.ReportMessageAsync(message, severity, cancellationToken);
FindUsages\IRemoteFindUsagesService.cs (1)
107=> _context.ReportMessageAsync(message, NotificationSeverity.Information, cancellationToken);