9 references to NumericChars
Aspire.Playground.Tests (9)
src\Shared\PasswordGenerator.cs (9)
47GenerateRequiredValues(ref currentChars, minNumeric, NumericChars);
92(true, true, true, true) => LowerCaseChars + UpperCaseChars + NumericChars + SpecialChars,
93(true, true, true, false) => LowerCaseChars + UpperCaseChars + NumericChars,
97(true, false, true, true) => LowerCaseChars + NumericChars + SpecialChars,
98(true, false, true, false) => LowerCaseChars + NumericChars,
102(false, true, true, true) => UpperCaseChars + NumericChars + SpecialChars,
103(false, true, true, false) => UpperCaseChars + NumericChars,
107(false, false, true, true) => NumericChars + SpecialChars,
108(false, false, true, false) => NumericChars,