5 references to CodeFix
Microsoft.CodeAnalysis.Features (1)
CodeFixes\CodeFixCollection.cs (1)
13
/// Represents a collection of <see cref="
CodeFix
"/>es supplied by a given fix provider
Microsoft.CodeAnalysis.Workspaces (4)
CodeFixes\Supression\IConfigurationFixProvider.cs (4)
27
/// <returns>A list of zero or more potential <see cref="
CodeFix
"/>'es. It is also safe to return null if there are none.</returns>
28
Task<ImmutableArray<
CodeFix
>> GetFixesAsync(TextDocument document, TextSpan span, IEnumerable<Diagnostic> diagnostics, CancellationToken cancellationToken);
33
/// <returns>A list of zero or more potential <see cref="
CodeFix
"/>'es. It is also safe to return null if there are none.</returns>
34
Task<ImmutableArray<
CodeFix
>> GetFixesAsync(Project project, IEnumerable<Diagnostic> diagnostics, CancellationToken cancellationToken);