26 lines
801 B
C#
26 lines
801 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using Umbraco.Core;
|
|
|
|
namespace Umbraco.Web.WebApi
|
|
{
|
|
/// <summary>
|
|
/// Used to convert the format of a DateTime object when serializing
|
|
/// </summary>
|
|
internal class CustomDateTimeConvertor : IsoDateTimeConverter
|
|
{
|
|
private readonly string _dateTimeFormat;
|
|
|
|
public CustomDateTimeConvertor(string dateTimeFormat)
|
|
{
|
|
Mandate.ParameterNotNullOrEmpty(dateTimeFormat, "dateTimeFormat");
|
|
_dateTimeFormat = dateTimeFormat;
|
|
}
|
|
|
|
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
|
|
{
|
|
writer.WriteValue(((DateTime)value).ToString(_dateTimeFormat));
|
|
}
|
|
}
|
|
} |