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