using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
public static void Test()
var Items = JToken.Parse(GetJson());
var brands = Items.SelectToken("Documents[0].Brands")?.ToObject<string []>();
Console.WriteLine("Deserialized {0}:", nameof(brands));
Console.WriteLine("\nInput JSON:");
Console.WriteLine(Items);
""id"": ""961AA6A6-F372-ZZZZ-1270-ZZZZZ"",
""ConsumerName"": ""SDKTest"",
""_self"": ""dbs/HwVmAA==/colls/xxx+OQ=/docs/HwVmANGw+xx==/"",
""_etag"": ""\""xxxx-0000-0c00-xx-5e1d6c1f0000\"""",
""_attachments"": ""attachments/"",
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("Json.NET 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.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];