3 types derived from FixAllProviderInfo
Microsoft.CodeAnalysis.Workspaces (3)
CodeFixesAndRefactorings\FixAllProviderInfo.cs (3)
119ImmutableArray<FixAllScope> supportedScopes) : FixAllProviderInfo(fixAllProvider, supportedScopes) 128ImmutableArray<FixAllScope> supportedScopes) : FixAllProviderInfo(fixAllProvider, supportedScopes) 138ImmutableArray<FixAllScope> supportedScopes) : FixAllProviderInfo(fixAllProvider, supportedScopes)
19 references to FixAllProviderInfo
Microsoft.CodeAnalysis.Features (10)
CodeFixes\Service\CodeFixService.cs (4)
55private ImmutableDictionary<object, FixAllProviderInfo?> _fixAllProviderMap = ImmutableDictionary<object, FixAllProviderInfo?>.Empty; 776var fixAllProviderInfo = extensionManager.PerformFunction( 777fixer, () => ImmutableInterlocked.GetOrAdd(ref _fixAllProviderMap, fixer, FixAllProviderInfo.Create), defaultValue: null);
CodeRefactorings\CodeRefactoring.cs (2)
29public FixAllProviderInfo? FixAllProviderInfo { get; } 34FixAllProviderInfo? fixAllProviderInfo)
CodeRefactorings\CodeRefactoringService.cs (4)
43private ImmutableDictionary<CodeRefactoringProvider, FixAllProviderInfo?> _fixAllProviderMap = ImmutableDictionary<CodeRefactoringProvider, FixAllProviderInfo?>.Empty; 279var fixAllProviderInfo = extensionManager.PerformFunction( 280provider, () => ImmutableInterlocked.GetOrAdd(ref _fixAllProviderMap, provider, FixAllProviderInfo.Create), defaultValue: null);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (1)
583FixAllProviderInfo? fixAllProviderInfo,
Microsoft.CodeAnalysis.Workspaces (8)
CodeFixesAndRefactorings\FixAllProviderInfo.cs (8)
32/// Gets an optional <see cref="FixAllProviderInfo"/> for the given code fix provider or suppression fix provider. 34public static FixAllProviderInfo? Create(object provider) 49/// Gets an optional <see cref="FixAllProviderInfo"/> for the given code fix provider. 51private static FixAllProviderInfo? CreateWithCodeFixer(CodeFixProvider provider) 75/// Gets an optional <see cref="FixAllProviderInfo"/> for the given code refactoring provider. 77private static FixAllProviderInfo? CreateWithCodeRefactoring(CodeRefactoringProvider provider) 95/// Gets an optional <see cref="FixAllProviderInfo"/> for the given suppression fix provider. 97private static FixAllProviderInfo? CreateWithSuppressionFixer(IConfigurationFixProvider provider)