21 references to CodeFixCollection
Microsoft.CodeAnalysis.Features (21)
CodeFixes\Service\CodeFixService.cs (15)
101public async Task<CodeFixCollection?> GetMostSevereFixAsync( 149var collection = await errorFixTask.ConfigureAwait(false) ?? 155async Task<CodeFixCollection?> GetFirstFixAsync( 162await foreach (var collection in StreamFixesAsync( 174public async IAsyncEnumerable<CodeFixCollection> StreamFixesAsync( 221await foreach (var collection in StreamFixesAsync( 241await foreach (var codeFixCollection in StreamConfigurationFixesAsync( 286public Task<CodeFixCollection?> GetDocumentFixAllForIdInSpanAsync( 290public async Task<CodeFixCollection?> GetDocumentFixAllForIdInSpanAsync( 314using var resultDisposer = ArrayBuilder<CodeFixCollection>.GetInstance(out var result); 320await foreach (var collection in StreamFixesAsync( 348var fixCollection = await GetDocumentFixAllForIdInSpanAsync( 443private async IAsyncEnumerable<CodeFixCollection> StreamFixesAsync( 706private async IAsyncEnumerable<CodeFixCollection> StreamConfigurationFixesAsync( 741private async Task<CodeFixCollection?> TryGetFixesOrConfigurationsAsync<TCodeFixProvider>(
CodeFixes\Service\ICodeFixService.cs (6)
18IAsyncEnumerable<CodeFixCollection> StreamFixesAsync(TextDocument document, TextSpan textSpan, ICodeActionRequestPriorityProvider priorityProvider, CancellationToken cancellationToken); 25Task<CodeFixCollection?> GetMostSevereFixAsync(TextDocument document, TextSpan range, ICodeActionRequestPriorityProvider priorityProvider, CancellationToken cancellationToken); 27Task<CodeFixCollection?> GetDocumentFixAllForIdInSpanAsync(TextDocument document, TextSpan textSpan, string diagnosticId, DiagnosticSeverity severity, CancellationToken cancellationToken); 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)