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