Table of Contents

Enum ValidCharacterCollection

Namespace
CapyKit.Helpers
Assembly
CapyKit.dll

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 = 0

Indicates that lower case characters should be included in the random string.

[EnumerationDescription("0123456789")] Numbers = 2

Indicates that numeric characters should be included in the random string.

[EnumerationDescription("!@#$%&?+-_")] Special = 3

Indicates that special characters should be included in the random string.

[EnumerationDescription("ABCDEFGHIJKLMNOPQRSTUVWXYZ")] Uppercase = 1

Indicates that upper case characters should be included in the random string.