Enum ValidCharacterCollection
An enumeration that defines the types of characters that can be included in a random string.
public enum ValidCharacterCollection
- Extension Methods
Fields
[EnumerationDescription("abcdefghijklmnopqrstuvwxyz")] Lowercase = 0Indicates that lower case characters should be included in the random string.
[EnumerationDescription("0123456789")] Numbers = 2Indicates that numeric characters should be included in the random string.
[EnumerationDescription("!@#$%&?+-_")] Special = 3Indicates that special characters should be included in the random string.
[EnumerationDescription("ABCDEFGHIJKLMNOPQRSTUVWXYZ")] Uppercase = 1Indicates that upper case characters should be included in the random string.