Enum XmlCaseType
Enumeration of the different case types for serialization
Namespace: NMF.Serialization
Assembly: NMF.Serialization.dll
Syntax
public enum XmlCaseType
Fields
Name | Description |
---|---|
AsInput | No changes in characters cases |
CamelCase | The first character will be converted to lower case, the remaining characters stay on their case |
CamelCaseInvariant | The first character will be converted to culture invariant lower case, other characters stay on their case |
Lower | All characters are converted to lower case |
LowerInvariant | All characters are converted to their culture invariant lower case |
PascalCase | The first character will be converted to upper case, the remaining characters stay on their case |
PascalCaseInvariant | The first character will be converted to culture invariant upper case, other characters stay on their case |
Upper | All characters are converted to upper case |
UpperInvariant | All characters are converted to their culture invariant upper case |