Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.​Text.​Json.​Serialization.​JsonKnownNamingPolicy

Assembly: System.Text.Json

The <see cref="T:System.Text.Json.JsonNamingPolicy" /> to be used at run time.

Values

Unspecified
Specifies that JSON property names should not be converted.
CamelCase
Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.CamelCase" /> be used to convert JSON property names.
SnakeCaseLower
Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.SnakeCaseLower" /> policy be used to convert JSON property names.
SnakeCaseUpper
Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.SnakeCaseUpper" /> policy be used to convert JSON property names.
KebabCaseLower
Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.KebabCaseLower" /> be used to convert JSON property names.
KebabCaseUpper
Specifies that the built-in <see cref="P:System.Text.Json.JsonNamingPolicy.KebabCaseUpper" /> policy be used to convert JSON property names.