1 write to Values
dotnet-user-jwts (1)
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (1)
16Values = new List<string>();
10 references to Values
dotnet-user-jwts (10)
Commands\CreateCommand.cs (4)
134var audience = audienceOption.HasValue() ? audienceOption.Values : DevJwtCliHelpers.GetAudienceCandidatesFromLaunchSettings(project); 195var roles = rolesOption.HasValue() ? rolesOption.Values : new List<string>(); 198var scopes = scopesOption.HasValue() ? scopesOption.Values : new List<string>(); 204if (!DevJwtCliHelpers.TryParseClaims(claimsOption.Values, out claims))
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (6)
70Values.Add(value); 73if (Values.Any()) 77Values.Add(value); 85Values.Add("on"); 95return Values.Any(); 100return HasValue() ? Values[0] : null;