9 references to NumericChars
Aspire.Playground.Tests (9)
src\Aspire.Hosting\Utils\PasswordGenerator.cs (9)
51GenerateRequiredValues(ref currentChars, minNumeric, NumericChars);
96(true, true, true, true) => LowerCaseChars + UpperCaseChars + NumericChars + SpecialChars,
97(true, true, true, false) => LowerCaseChars + UpperCaseChars + NumericChars,
101(true, false, true, true) => LowerCaseChars + NumericChars + SpecialChars,
102(true, false, true, false) => LowerCaseChars + NumericChars,
106(false, true, true, true) => UpperCaseChars + NumericChars + SpecialChars,
107(false, true, true, false) => UpperCaseChars + NumericChars,
111(false, false, true, true) => NumericChars + SpecialChars,
112(false, false, true, false) => NumericChars,