7 references to CreateDocumentNotFoundException
Microsoft.CodeAnalysis.Workspaces (7)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (7)
64
return solution.GetDocument(documentId) ?? throw
CreateDocumentNotFoundException
();
84
throw
CreateDocumentNotFoundException
();
90
=> (await solution.GetDocumentAsync(documentId, includeSourceGenerated, cancellationToken).ConfigureAwait(false)) ?? throw
CreateDocumentNotFoundException
();
93
=> (await solution.GetTextDocumentAsync(documentId, cancellationToken).ConfigureAwait(false)) ?? throw
CreateDocumentNotFoundException
();
97
=> solution.GetAdditionalDocument(documentId) ?? throw
CreateDocumentNotFoundException
();
100
=> solution.GetAnalyzerConfigDocument(documentId) ?? throw
CreateDocumentNotFoundException
();
103
=> solution.GetTextDocument(documentId) ?? throw
CreateDocumentNotFoundException
();