|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.NewtonsoftJson;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace BasicWebSite.Controllers;
public class JsonResultWithNewtonsoftJsonController : Controller
{
private static readonly JsonSerializerSettings _customSerializerSettings;
static JsonResultWithNewtonsoftJsonController()
{
_customSerializerSettings = JsonSerializerSettingsProvider.CreateSerializerSettings();
_customSerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
}
public JsonResult Plain()
{
return new JsonResult(new { Message = "hello" });
}
public JsonResult CustomContentType()
{
var result = new JsonResult(new { Message = "hello" });
result.ContentType = "application/message+json";
return result;
}
public JsonResult CustomSerializerSettings()
{
return new JsonResult(new { Message = "hello" }, _customSerializerSettings);
}
public JsonResult Null()
{
return new JsonResult(null);
}
public JsonResult String()
{
return new JsonResult("hello");
}
}
|