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