5 references to GetTextAsync
Microsoft.CodeAnalysis.Workspaces (5)
Serialization\SerializableSourceText.cs (1)
135static (state, cancellationToken) => state.GetTextAsync(cancellationToken),
Workspace\Solution\AnalyzerConfigDocumentState.cs (1)
27asynchronousComputeFunction: static async (self, cancellationToken) => AnalyzerConfig.Parse(await self.GetTextAsync(cancellationToken).ConfigureAwait(false), self.FilePath),
Workspace\Solution\DocumentState.cs (1)
108var text = await this.GetTextAsync(cancellationToken).ConfigureAwait(false);
Workspace\Solution\ProjectState.cs (1)
149var text = await documentState.GetTextAsync(cancellationToken).ConfigureAwait(false);
Workspace\Solution\TextDocument.cs (1)
80=> State.GetTextAsync(cancellationToken);