4 implementations of GetValue
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\Solution\ConstantTextAndVersionSource.cs (1)
40public TextAndVersion GetValue(LoadTextOptions options, CancellationToken cancellationToken)
Workspace\Solution\DocumentState_TreeTextSource.cs (1)
38public TextAndVersion GetValue(LoadTextOptions options, CancellationToken cancellationToken)
Workspace\Solution\LoadableTextAndVersionSource.cs (1)
63public TextAndVersion GetValue(LoadTextOptions options, CancellationToken cancellationToken)
Workspace\Solution\RecoverableTextAndVersion.cs (1)
92public TextAndVersion GetValue(LoadTextOptions options, CancellationToken cancellationToken)
6 references to GetValue
Microsoft.CodeAnalysis.Workspaces (6)
Workspace\Solution\DocumentState.cs (2)
141var textAndVersion = newTextSource.GetValue(loadTextOptions, cancellationToken); 209var newTextAndVersion = newTextSource.GetValue(loadTextOptions, cancellationToken);
Workspace\Solution\RecoverableTextAndVersion.cs (2)
99value: new RecoverableText(source, source.GetValue(options, cancellationToken), options, _services), 110new RecoverableText(recoverableText.InitialSource, recoverableText.InitialSource.GetValue(options, cancellationToken), options, _services));
Workspace\Solution\TextDocumentState.cs (2)
154var textAndVersion = this.TextAndVersionSource.GetValue(LoadTextOptions, cancellationToken); 160var textAndVersion = this.TextAndVersionSource.GetValue(LoadTextOptions, cancellationToken);