| File: CodeFixes\AbstractConfigurationActionWithNestedActions.cs | Web Access |
| Project: src\roslyn\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CodeActions; namespace Microsoft.CodeAnalysis.CodeFixes; /// <summary> /// Represents a configuration code action with nested actions registered by individual <see cref="IConfigurationFixProvider"/>s. /// Note that the code fix/light bulb engine groups all such <see cref="AbstractConfigurationActionWithNestedActions"/> from different providers /// into another top level suggested action to avoid light bulb clutter. This topmost suggested action is *not* represented by this code action. /// </summary> internal abstract class AbstractConfigurationActionWithNestedActions : CodeAction.CodeActionWithNestedActions { protected AbstractConfigurationActionWithNestedActions(ImmutableArray<CodeAction> nestedActions, string title) : base(title, nestedActions, isInlinable: false, priority: CodeActionPriority.Lowest) // Put configurations/suppressions at the end of everything. { } /// <summary> /// Additional priority associated with all configuration and suppression code actions. /// This allows special code actions such as Bulk configuration to to be at the end of /// all suppression and configuration actions by having a lower additional priority. /// </summary> internal virtual CodeActionPriority AdditionalPriority => CodeActionPriority.Default; internal virtual bool IsBulkConfigurationAction => false; }