4 implementations of TextLoader
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\Solution\ConstantTextAndVersionSource.cs (1)
24public TextLoader? TextLoader
Workspace\Solution\DocumentState_TreeTextSource.cs (1)
26public TextLoader? TextLoader
Workspace\Solution\VersionSource\LoadableTextAndVersionSource.cs (1)
105public TextLoader TextLoader { get; } = loader;
Workspace\Solution\VersionSource\RecoverableTextAndVersion.cs (1)
48public TextLoader? TextLoader
4 references to TextLoader
Microsoft.CodeAnalysis.Workspaces (4)
Serialization\SerializableSourceText.cs (1)
121if (state.TextAndVersionSource.TextLoader is SerializableSourceTextLoader serializableLoader)
Workspace\Solution\TextDocumentState.cs (1)
65=> ReferenceEquals(loader, TextAndVersionSource.TextLoader) ? this : UpdateText(loader, mode);
Workspace\Solution\VersionSource\ITextAndVersionSource.cs (1)
20/// Retrieves the underlying <see cref="TextLoader"/> if that's what this <see cref="ITextAndVersionSource"/> was
Workspace\Solution\VersionSource\RecoverableTextAndVersion.cs (1)
49=> (_initialSourceOrRecoverableText as ITextAndVersionSource)?.TextLoader;