Enum CodecNameStyle
Selects how generated codec member names are derived from CLR names.
public enum CodecNameStyle
Fields
CamelCase = 1Converts the initial ASCII uppercase run to camel case.
Acronyms keep the final capital when it starts the next word, so
URLValuebecomesurlValue, whereas an explicit CodecNameAttribute is always used unchanged.Preserve = 0Keeps each C# member name unchanged.