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)
23
ICodeFixService
codeFixService,
27
private readonly
ICodeFixService
_codeFixService = codeFixService;
Handler\CodeActions\CodeActionHelpers.cs (3)
37
ICodeFixService
codeFixService,
314
ICodeFixService
codeFixService,
390
ICodeFixService
codeFixService,
Handler\CodeActions\CodeActionResolveHandler.cs (2)
33
private readonly
ICodeFixService
_codeFixService;
40
ICodeFixService
codeFixService,
Handler\CodeActions\CodeActionsHandler.cs (2)
28
private readonly
ICodeFixService
_codeFixService;
42
ICodeFixService
codeFixService,