Table of Contents

Enum CodecNameStyle

Namespace
Shard.Codecs
Assembly
Shard.Codecs.dll

Selects how generated codec member names are derived from CLR names.

public enum CodecNameStyle

Fields

CamelCase = 1

Converts the initial ASCII uppercase run to camel case.

Acronyms keep the final capital when it starts the next word, so URLValue becomes urlValue, whereas an explicit CodecNameAttribute is always used unchanged.

Preserve = 0

Keeps each C# member name unchanged.