Enum XmlCaseType
- Namespace
- NMF.Serialization
- Assembly
- NMF.Serialization.dll
Enumeration of the different case types for serialization
public enum XmlCaseType
Fields
AsInput = 0
No changes in characters cases
CamelCase = 1
The first character will be converted to lower case, the remaining characters stay on their case
CamelCaseInvariant = 7
The first character will be converted to culture invariant lower case, other characters stay on their case
Lower = 4
All characters are converted to lower case
LowerInvariant = 6
All characters are converted to their culture invariant lower case
PascalCase = 2
The first character will be converted to upper case, the remaining characters stay on their case
PascalCaseInvariant = 8
The first character will be converted to culture invariant upper case, other characters stay on their case
Upper = 3
All characters are converted to upper case
UpperInvariant = 5
All characters are converted to their culture invariant upper case