Does anyone know if there is a replacement in ASP.NET 5 for HttpResponse.ContentEncoding? https://msdn.microsoft.com/en-us/library/system.web.httpresponse.contentencoding(v=
Example:
var mediaType = new MediaTypeHeaderValue("application/json"); mediaType.Encoding = Encoding.UTF8; httpContext.Response.ContentType = mediaType.ToString();