2 implementations of IFilterableCommand
Microsoft.TemplateEngine.Cli (2)
Commands\list\BaseListCommand.cs (1)
10internal class BaseListCommand : BaseCommand<ListCommandArgs>, IFilterableCommand, ITabularOutputCommand
Commands\search\BaseSearchCommand.cs (1)
11internal class BaseSearchCommand : BaseCommand<SearchCommandArgs>, IFilterableCommand, ITabularOutputCommand
3 references to IFilterableCommand
Microsoft.TemplateEngine.Cli (3)
Commands\BaseFilterableArgs.cs (3)
15if (command is not IFilterableCommand filterableCommand) 17throw new ArgumentException($"{nameof(command)} should be {nameof(IFilterableCommand)}", nameof(command)); 53private static IReadOnlyDictionary<FilterOptionDefinition, OptionResult> ParseFilters(IFilterableCommand filterableCommand, ParseResult parseResult)