using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
public class WriteOnlyIsoDateTimeConverter : IsoDateTimeConverter
public override bool CanRead => false;
public static void Test()
using (new FakeLocalTimeZone(TimeZoneInfo.FindSystemTimeZoneById("US/Eastern")))
Assert.AreEqual("US/Eastern", TimeZoneInfo.Local.Id);
Assert.AreEqual(TimeSpan.FromHours(-5), TimeZoneInfo.Local.BaseUtcOffset);
public static void TestInner()
var json = @"""2022-08-22T13:42:27.407Z""";
var jsonSettings = new JsonSerializerSettings();
jsonSettings.Converters.Add(new WriteOnlyIsoDateTimeConverter() { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" });
var dateTime = JsonConvert.DeserializeObject<DateTime>(json, jsonSettings);
var json2 = JsonConvert.SerializeObject(dateTime, jsonSettings);
Assert.AreEqual(@"""2022-08-22 13:42:27""", json2);
Console.WriteLine(dateTime.Kind);
Console.WriteLine(json2);
public class FakeLocalTimeZone : IDisposable
private readonly TimeZoneInfo _actualLocalTimeZoneInfo;
private static void SetLocalTimeZone(TimeZoneInfo timeZoneInfo)
typeof(TimeZoneInfo).AsDynamicType().s_cachedData._localTimeZone = timeZoneInfo;
public FakeLocalTimeZone(TimeZoneInfo timeZoneInfo)
_actualLocalTimeZoneInfo = TimeZoneInfo.Local;
SetLocalTimeZone(timeZoneInfo);
SetLocalTimeZone(_actualLocalTimeZoneInfo);
public static void Main()
Console.WriteLine("Environment version: {0} ({1}), {2}", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , Environment.Version, Environment.OSVersion);
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Namespace, typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");