5 references to GetValueAsync
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Solution\DocumentState.cs (2)
140var textAndVersion = await newTextSource.GetValueAsync(loadTextOptions, cancellationToken).ConfigureAwait(false); 202var newTextAndVersion = await newTextSource.GetValueAsync(loadTextOptions, cancellationToken).ConfigureAwait(false);
Workspace\Solution\TextDocumentState.cs (1)
194return new ValueTask<TextAndVersion>(TextAndVersionSource.GetValueAsync(LoadTextOptions, cancellationToken));
Workspace\Solution\VersionSource\ITextAndVersionSource.cs (1)
32/// Retrieves just the version information from this instance. Cheaper than <see cref="GetValueAsync"/> when only
Workspace\Solution\VersionSource\RecoverableTextAndVersion.cs (1)
91? await source.GetValueAsync(options, cancellationToken).ConfigureAwait(false)