File: System\ComponentModel\Design\ComponentDesigner.CDDesignerCommandSet.cs
Web Access
Project: src\src\System.Windows.Forms.Design\src\System.Windows.Forms.Design.csproj (System.Windows.Forms.Design)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections;
 
namespace System.ComponentModel.Design;
 
public partial class ComponentDesigner
{
    /// <summary>
    ///  DesignerCommandSet to be used as a site specific service.
    /// </summary>
    private class CDDesignerCommandSet : DesignerCommandSet
    {
        private readonly ComponentDesigner _componentDesigner;
 
        public CDDesignerCommandSet(ComponentDesigner componentDesigner) => _componentDesigner = componentDesigner;
 
        public override ICollection? GetCommands(string name) => name switch
        {
            VerbsCommand => _componentDesigner.Verbs,
            ActionListsCommand => _componentDesigner.ActionLists,
            _ => base.GetCommands(name)
        };
    }
}