8 references to GetDocumentAsync
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
736
var document = await project.
GetDocumentAsync
(documentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
EditAndContinue\EditSession.cs (6)
184
var oldDocument = await oldProject.
GetDocumentAsync
(documentAnalysis.DocumentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
185
var newDocument = await newProject.
GetDocumentAsync
(documentAnalysis.DocumentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
835
var oldDocument = await oldProject.
GetDocumentAsync
(analysis.DocumentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
1057
var oldDocument = await oldProject.
GetDocumentAsync
(documentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
1495
var oldDocument = await oldProject.
GetDocumentAsync
(changedDocumentAnalysis.DocumentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
1496
var newDocument = await newProject.
GetDocumentAsync
(changedDocumentAnalysis.DocumentId, includeSourceGenerated: true, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\Solution.cs (1)
262
return await project.
GetDocumentAsync
(documentId, includeSourceGenerated, cancellationToken).ConfigureAwait(false);