1 instantiation of CommandArgument
dotnet-user-secrets (1)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
127
var argument = new
CommandArgument
{ Name = name, Description = description, MultipleValues = multipleValues };
16 references to CommandArgument
dotnet-user-secrets (16)
Internal\RemoveCommand.cs (1)
17
var
keyArg = command.Argument("[name]", "Name of the secret");
Internal\SetCommand.cs (2)
33
var
nameArg = command.Argument("[name]", "Name of the secret");
34
var
valueArg = command.Argument("[value]", "Value of the secret");
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (13)
40
Arguments = new List<
CommandArgument
>();
56
public readonly List<
CommandArgument
> Arguments;
110
public
CommandArgument
Argument(string name, string description, bool multipleValues = false)
115
public
CommandArgument
Argument(string name, string description, Action<
CommandArgument
> configuration, bool multipleValues = false)
117
var
lastArg = Arguments.LastOrDefault();
127
var
argument = new CommandArgument { Name = name, Description = description, MultipleValues = multipleValues };
146
IEnumerator<
CommandArgument
> arguments = null;
482
foreach (
var
arg in arguments)
601
private sealed class CommandArgumentEnumerator : IEnumerator<
CommandArgument
>
603
private readonly IEnumerator<
CommandArgument
> _enumerator;
605
public CommandArgumentEnumerator(IEnumerator<
CommandArgument
> enumerator)
610
public
CommandArgument
Current