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