6 implementations of OnStartedAsync
Microsoft.CodeAnalysis.Features (2)
FindUsages\AbstractFindUsagesService.ProgressAdapter.cs (1)
90public ValueTask OnStartedAsync(CancellationToken cancellationToken) => default;
ValueTracking\ValueTracker.FindReferencesProgress.cs (1)
138public ValueTask OnStartedAsync(CancellationToken _) => new();
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SymbolFinder\RemoteSymbolFinderService.cs (1)
215public ValueTask OnStartedAsync(CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
27public ValueTask OnStartedAsync(CancellationToken cancellationToken) => default;
FindSymbols\FindReferences\StreamingFindReferencesProgress.cs (1)
73public ValueTask OnStartedAsync(CancellationToken cancellationToken)
FindSymbols\StreamingProgressCollector.cs (1)
58public ValueTask OnStartedAsync(CancellationToken cancellationToken) => _underlyingProgress.OnStartedAsync(cancellationToken);
3 references to OnStartedAsync
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
77await _progress.OnStartedAsync(cancellationToken).ConfigureAwait(false);
FindSymbols\StreamingProgressCollector.cs (1)
58public ValueTask OnStartedAsync(CancellationToken cancellationToken) => _underlyingProgress.OnStartedAsync(cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
47=> _progress.OnStartedAsync(cancellationToken);