Class CommandAppExtensions
Provides extension methods for Spectre.Console.Cli.ICommandApp.
Inherited Members
Namespace: Coree.NETStandard.SpectreConsole
Assembly: Coree.NETStandard.dll
Syntax
public static class CommandAppExtensions
Methods
| Edit this page View SourceGetCommandTypes(ICommandApp)
Retrieves a list of command types registered with the Spectre.Console.Cli.ICommandApp. This method uses reflection to access the private configurator field within the Spectre.Console.Cli.ICommandApp instance, then extracts and returns the types of the registered commands.
Declaration
public static List<Type> GetCommandTypes(this ICommandApp commandApp)
Parameters
Type | Name | Description |
---|---|---|
ICommandApp | commandApp | The Spectre.Console.Cli.ICommandApp instance to extract command types from. |
Returns
Type | Description |
---|---|
List<Type> | A list of Type objects representing the command types registered with the Spectre.Console.Cli.ICommandApp. |
Remarks
This method relies on the internal structure of the Spectre.Console.Cli.ICommandApp implementation. If the implementation changes in future versions, this method may no longer work as expected.