7 references to LoadTextOptions
Microsoft.CodeAnalysis.Workspaces (7)
Workspace\Solution\DocumentState.cs (1)
305
var newLoadTextOptions = new
LoadTextOptions
(checksumAlgorithm);
Workspace\Solution\ProjectState.cs (4)
99
var loadTextOptions = new
LoadTextOptions
(projectInfoFixed.Attributes.ChecksumAlgorithm);
319
typeof(TDocumentState) == typeof(DocumentState) ? CreateDocument(documentInfo, ParseOptions, new
LoadTextOptions
(ChecksumAlgorithm)) :
320
typeof(TDocumentState) == typeof(AdditionalDocumentState) ? new AdditionalDocumentState(LanguageServices.SolutionServices, documentInfo, new
LoadTextOptions
(ChecksumAlgorithm)) :
321
typeof(TDocumentState) == typeof(AnalyzerConfigDocumentState) ? new AnalyzerConfigDocumentState(LanguageServices.SolutionServices, documentInfo, new
LoadTextOptions
(ChecksumAlgorithm)) :
Workspace\Solution\SourceGeneratedDocumentState.cs (1)
90
var loadTextOptions = new
LoadTextOptions
(generatedSourceText.ChecksumAlgorithm);
Workspace\Solution\TextLoader.cs (1)
84
=> LoadTextAndVersionAsync(new
LoadTextOptions
(SourceHashAlgorithms.Default), cancellationToken);