1 type derived from FileTextLoader
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\WorkspaceFileTextLoader.cs (1)
18internal class WorkspaceFileTextLoader : FileTextLoader
1 instantiation of FileTextLoader
dotnet-format (1)
Workspaces\FolderWorkspace_ProjectLoader.cs (1)
52loader: new FileTextLoader(filePaths[index], DefaultEncoding),
5 references to FileTextLoader
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\PdbMatchingSourceTextProvider.cs (1)
21/// Captures <see cref="DocumentState"/> of documents that transition from being backed by <see cref="FileTextLoader"/> to being backed by text buffer when a document is opened in the editor.
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\ProjectSystem\ProjectSystemProject.BatchingDocumentCollection.cs (1)
90var textLoader = _project._projectSystemProjectFactory.CreateFileTextLoader(fullPath);
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (1)
97public FileTextLoader CreateFileTextLoader(string fullPath)
Workspace\Solution\FileTextLoader.cs (1)
68GetType(), _ => new StrongBox<bool>(new Func<Stream, Workspace, SourceText>(CreateText).Method.DeclaringType != typeof(FileTextLoader))).Value;
Workspace\WorkspaceFileTextLoader.cs (1)
15/// <see cref="FileTextLoader"/> that uses workspace services (i.e. <see cref="ITextFactoryService"/>) to load file content.