Lowercase boolean serializing

When boolean values are serialized, they are serialized uppercase: True, False
Is it possible to enforce lowercase? Like: true, false

Seems like a good candidate for a settings option.

It’s already lowercase for JSON which is the standard for booleans, what serialization are you referring to?

QueryStringSerializer.SerializeToString

Yeah that’s serializing the .NET ToString() value for structs. Each serialization has a perf cost and don’t want to add specialization logic to handle specific data types differently unless there’s demand, so you can add a feature request to measure demand for it.