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.Threading.Tasks;
using System.Text.Json.Serialization;
public Guid Id { get; set; }
public byte[] Document { get; set; }
public static async Task Test()
Id = Guid.Parse("81a130d2-502f-4cf1-a376-63edeb000e9f"),
Document = Enumerable.Range(0, short.MaxValue).Select(i => unchecked((byte)i)).ToArray(),
var inJson = Newtonsoft.Json.JsonConvert.SerializeObject(inDoc);
Console.WriteLine(inJson);
var inBytes = Encoding.UTF8.GetBytes(inJson);
using var responseStream = new MemoryStream(inBytes);
var doc = await JsonSerializer.DeserializeAsync<Doc>(responseStream);
Assert.AreEqual(inDoc.Id, doc.Id, "Id");
Assert.IsTrue(inDoc.Document.SequenceEqual(doc.Document));
public static async Task Main(string[] args)
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, 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.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];