I receive a string that contains valid JSON from another service. I would like to just forward this string with Nancy but also set the content-type to \"application/json\" which
This also works:
Response.AsText(myJsonString, "application/json");