3 implementations of GetFixesAsync
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Configuration\ConfigureCodeStyle\ConfigureCodeStyleOptionCodeFixProvider.cs (1)
55
public Task<ImmutableArray<CodeFix>>
GetFixesAsync
(TextDocument document, TextSpan span, IEnumerable<Diagnostic> diagnostics, CancellationToken cancellationToken)
CodeFixes\Configuration\ConfigureSeverity\ConfigureSeverityLevelCodeFixProvider.cs (1)
47
public Task<ImmutableArray<CodeFix>>
GetFixesAsync
(TextDocument document, TextSpan span, IEnumerable<Diagnostic> diagnostics, CancellationToken cancellationToken)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.cs (1)
140
public Task<ImmutableArray<CodeFix>>
GetFixesAsync
(
2 references to GetFixesAsync
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Service\CodeFixService.cs (1)
734
var fixes = await provider.
GetFixesAsync
(document, diagnosticsSpan, dxs, cancellationToken).ConfigureAwait(false);
CodeFixes\Suppression\WrapperCodeFixProvider.cs (1)
28
var suppressionFixes = await SuppressionFixProvider.
GetFixesAsync
(context.Document, context.Span, documentDiagnostics, context.CancellationToken).ConfigureAwait(false);