My application is an ASP.NET Core 1.0 Web API. If my controller returns a small string, everything works fine. But if the string length gets longer than 32768, i\'m getting
Try this:
return new ContentResult { Content = this.GetResponse(), StatusCode = 200 };