using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;
public class CustomDateTimeConverter : JsonConverter<DateTime?>
const string Format = "dddd, dd MMM yyyy hh:mm:ss";
public override DateTime? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) =>
DateTime.Parse(reader.GetString(), CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal);
public override void Write(Utf8JsonWriter writer, DateTime? value, JsonSerializerOptions options) =>
writer.WriteStringValue(value?.ToUniversalTime().ToString(Format, CultureInfo.InvariantCulture)+" GMT");
public class FilingSearchCriteria
public int? FilerId { get; set; }
public int? TypeId { get; set; }
[JsonConverter(typeof(CustomDateTimeConverter))]
public DateTime? StartDate { get; set; }
[JsonConverter(typeof(CustomDateTimeConverter))]
public DateTime? EndDate { get; set; }
public bool? Legacy { get; set; }
public bool? NoAtttachments { get; set; }
public bool? MissingFields { get; set; }
public bool? MissingAttachments { get; set; }
public string DocketNumber { get; set; }
public static void Test()
var options = new JsonSerializerOptions
var model = JsonSerializer.Deserialize<FilingSearchCriteria>(
@"{""EndDate"":""Tue, 02 Feb 2021 18:07:33 GMT"",""StartDate"":""Tue, 26 Jan 2021 18:07:33 GMT""}",
Console.WriteLine(JsonSerializer.Serialize(model.EndDate));
Console.WriteLine(JsonSerializer.Serialize(model.StartDate));
Console.WriteLine(JsonSerializer.Serialize(model, options));
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("System.Text.Json version: " + typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];