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