3 implementations of OnStartedAsync
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\NoOpStreamingFindReferencesProgress.cs (1)
28public ValueTask OnStartedAsync(CancellationToken cancellationToken) => default;
FindSymbols\FindReferences\StreamingFindReferencesProgress.cs (1)
64public ValueTask OnStartedAsync(CancellationToken cancellationToken)
FindSymbols\StreamingProgressCollector.cs (1)
48public ValueTask OnStartedAsync(CancellationToken cancellationToken) => underlyingProgress.OnStartedAsync(cancellationToken);
3 references to OnStartedAsync
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\FindReferencesSearchEngine.cs (1)
65await _progress.OnStartedAsync(cancellationToken).ConfigureAwait(false);
FindSymbols\StreamingProgressCollector.cs (1)
48public ValueTask OnStartedAsync(CancellationToken cancellationToken) => underlyingProgress.OnStartedAsync(cancellationToken);
FindSymbols\SymbolFinder.FindReferencesServerCallback.cs (1)
35=> progress.OnStartedAsync(cancellationToken);