MemorablePasswordStringCase Enumeration

Specifies the string-case of the words in a memorable password.

Definition

Namespace: DevCase.Core.Security.Passwords
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum MemorablePasswordStringCase

Members

LowerCase 0 Changes all characters to lower-case.

[Example]

Input : ABCDEF

Output: abcdef

UpperCase 1 Changes all characters to upper-case.

[Example]

Input : abcdef

Output: ABCDEF

TitleCase 2 Changes the first characters to upper-case, and the rest of characters to lower-case.

[Example]

Input : abcdef

Output: Abcdef

MixedTitleCaseLower 6 Mixed-case with first character to lower-case.

[Example]

Input : ab cd ef

Output: aB Cd eF

MixedTitleCaseUpper 7 Mixed-case with first character to upper-case.

[Example]

Input : ab cd ef

Output: Ab cD Ef

ToggleCase 16 Toggle-case.

[Example]

Input : abc def ghi

Output: aBC dEF gHI

AlternateChars 18 Alternates any lower-case character to upper-case and vice versa.

[Example]

Input : Hello World!

Output: hELLO wORLD!

See Also