5 references to GetOptionsAsync
Microsoft.CodeAnalysis.Workspaces (4)
Formatting\Formatter.cs (2)
327
optionSet ??= await document.
GetOptionsAsync
(cancellationToken).ConfigureAwait(false);
369
var optionSet = await document.
GetOptionsAsync
(cancellationToken).ConfigureAwait(false);
Options\DocumentOptionSet.cs (1)
15
/// An <see cref="OptionSet"/> that comes from <see cref="Document.
GetOptionsAsync
(System.Threading.CancellationToken)"/>. It behaves just like a normal
Simplification\Simplifier.cs (1)
257
optionSet ??= await document.
GetOptionsAsync
(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
81
var documentOptions = await document.
GetOptionsAsync
();