This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Description
I've had an issue where I wanted to store a serialized json array in a cookie. This is not allowed anymore because of the comma that appears in the serialized representation (e.g. "["value 1","value 2"]").
Comma's are indeed not supported in cookies, but in the past (System.Web, Owin), these were always encoded and this does not seem to be the case anymore.
I wonder, should we encode and decode these values ourselves or should the framework do that automatically.