4 references to GetTextDocumentAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Extensions\Extensions.cs (1)
95
var textDocument = await solution.
GetTextDocumentAsync
(documentIdentifier, cancellationToken).ConfigureAwait(false);
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
252
var document = await solution.
GetTextDocumentAsync
(textDocumentIdentifier, cancellationToken).ConfigureAwait(false);
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (1)
214
var document = await context.Solution.
GetTextDocumentAsync
(textDocument, cancellationToken).ConfigureAwait(false);
Workspaces\LspWorkspaceManager.cs (1)
287
var document = await lspSolution.
GetTextDocumentAsync
(textDocumentIdentifier, cancellationToken).ConfigureAwait(false);