ResourceNameCharacters Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Classes of characters that are valid for naming a given resource.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum ResourceNameCharacters
[<System.Flags>]
type ResourceNameCharacters =
Public Enum ResourceNameCharacters
- Inheritance
-
ResourceNameCharacters
- Attributes
Fields
Name | Value | Description |
---|---|---|
LowercaseLetters | 1 | Lowercase letters (a-z). |
UppercaseLetters | 2 | Uppercase letters (A-Z). |
Letters | 3 | Lower or uppercase letters (a-z, A-Z). |
Numbers | 4 | Numbers (0-9). |
Alphanumeric | 7 | Alphanumeric characters (a-z, A-Z, 0-9). |
Hyphen | 8 | Hyphens (-). |
Underscore | 16 | Underscores (_). |
Period | 32 | Periods (.). |
Parentheses | 64 | Parentheses ( (, ) ). |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET