Alright I can't figure out why JsonConvert.SerializeObject serializes DateTime objects differently than JsonSerializer.Serialize.
Given the class
public class Test
{
[JsonConverter(typeof(JavaScriptDateTimeConverter))]
public DateTime DeliveryDate { get { return DateTime.Now; } }
}
@Html.Raw(JsonConvert.SerializeObject(new Test()))
outputs:
"DeliveryDate": "2013-03-01T07:00:00.000Z"
but when I use JsonSerializer.Serialize like in JsonNetResult: http://james.newtonking.com/archive/2008/10/16/asp-net-mvc-and-json-net.aspx
I get the following output:
"DeliveryDate": new Date(1362520794703)
I can't figure out why there is this inconsistency. I would had thought JsonConvert.SerializeObject would use JsonSerializer internally.
JsonNetResultmentioned to output dates like"2013-03-01T07:00:00.000Z"– Mr. Young Mar 5 at 22:05