7 references to GetOptionsProvider
Microsoft.CodeAnalysis.CSharp.Features (2)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (1)
49fixAllContext.GetOptionsProvider(), fixAllContext.CancellationToken).ConfigureAwait(false);
EmbeddedStatementPlacementCodeFixProvider.cs (1)
138async (context, document, diagnostics) => await FixAllAsync(document, diagnostics, context.GetOptionsProvider(), context.CancellationToken).ConfigureAwait(false));
Microsoft.CodeAnalysis.Features (3)
AbstractFileHeaderCodeFixProvider.cs (1)
235return await this.GetTransformedDocumentAsync(document, context.GetOptionsProvider(), context.CancellationToken).ConfigureAwait(false);
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.FixAllProvider.cs (1)
41var fallbackOptions = fixAllContext.GetOptionsProvider();
ConsecutiveStatementPlacementCodeFixProvider.cs (1)
65=> FixAllProvider.Create(async (context, document, diagnostics) => await FixAllAsync(document, diagnostics, context.GetOptionsProvider(), context.CancellationToken).ConfigureAwait(false));
Microsoft.CodeAnalysis.Workspaces (2)
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (1)
34return await this.FixAllAsync(document, fixAllSpans, fixAllContext.GetOptionsProvider(), fixAllContext.CodeActionEquivalenceKey, fixAllContext.CancellationToken).ConfigureAwait(false);
SyntaxEditorBasedCodeFixProvider.cs (1)
50return await FixAllAsync(document, filteredDiagnostics, fixAllContext.GetOptionsProvider(), fixAllContext.CancellationToken).ConfigureAwait(false);