1 implementation of ICodeFixService
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\CodeFixes\CodeFixService.cs (1)
40
internal partial class CodeFixService :
ICodeFixService
17 references to ICodeFixService
Microsoft.CodeAnalysis.LanguageServer.Protocol (17)
Features\CodeCleanup\AbstractCodeCleanupService.cs (2)
26
private readonly
ICodeFixService
_codeFixService;
29
protected AbstractCodeCleanupService(
ICodeFixService
codeFixService, IDiagnosticAnalyzerService diagnosticAnalyzerService)
Features\CodeFixes\CodeFixService.cs (1)
39
[Export(typeof(
ICodeFixService
)), Shared]
Features\CodeFixes\ICodeFixService.cs (4)
35
public static IAsyncEnumerable<CodeFixCollection> StreamFixesAsync(this
ICodeFixService
service, TextDocument document, TextSpan range, CancellationToken cancellationToken)
38
public static Task<ImmutableArray<CodeFixCollection>> GetFixesAsync(this
ICodeFixService
service, TextDocument document, TextSpan range, CancellationToken cancellationToken)
41
public static Task<ImmutableArray<CodeFixCollection>> GetFixesAsync(this
ICodeFixService
service, TextDocument document, TextSpan textSpan, ICodeActionRequestPriorityProvider priorityProvider, CancellationToken cancellationToken)
44
public static Task<TDocument> ApplyCodeFixesForSpecificDiagnosticIdAsync<TDocument>(this
ICodeFixService
service, TDocument document, string diagnosticId, IProgress<CodeAnalysisProgress> progressTracker, CancellationToken cancellationToken) where TDocument : TextDocument
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (1)
37
ICodeFixService
codeFixService,
Handler\CodeActions\CodeActionFixAllResolveHandler.cs (2)
25
ICodeFixService
codeFixService,
29
private readonly
ICodeFixService
_codeFixService = codeFixService;
Handler\CodeActions\CodeActionHelpers.cs (3)
34
ICodeFixService
codeFixService,
307
ICodeFixService
codeFixService,
384
ICodeFixService
codeFixService,
Handler\CodeActions\CodeActionResolveHandler.cs (2)
34
private readonly
ICodeFixService
_codeFixService;
41
ICodeFixService
codeFixService,
Handler\CodeActions\CodeActionsHandler.cs (2)
29
private readonly
ICodeFixService
_codeFixService;
43
ICodeFixService
codeFixService,