5 references to GetOptionsAsync
Microsoft.CodeAnalysis.Workspaces (4)
Formatting\Formatter.cs (2)
327optionSet ??= await document.GetOptionsAsync(cancellationToken).ConfigureAwait(false); 369var 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)
257optionSet ??= await document.GetOptionsAsync(cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
Formatter\FormatterTests.cs (1)
81var documentOptions = await document.GetOptionsAsync();