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()
public static void TestJsonPath()
var JSONResponse = GetJson();
var data = JsonConvert.DeserializeObject<JObject>(JSONResponse);
var x = data.SelectToken("clientResponsePayload.orchestrationDecisions[0].sequenceId")?.Value<string>();
Console.WriteLine(x == null);
public static void TestIndexers()
var JSONResponse = GetJson();
var data = JsonConvert.DeserializeObject<JObject>(JSONResponse);
var x = data["clientResponsePayload"]?["orchestrationDecisions"]?[0]?["sequenceId"]?.Value<string>();
Console.WriteLine(x == null);
""requestType"": ""PreciseIdOnly"",
""clientReferenceId"": ""21321"",
""expRequestId"": ""213213"",
""messageTime"": ""2020-05-28T00:00:02Z"",
""decisionText"": ""Continue & Investigate"",
""Continue & Investigate""
""recommendedNextActions"": [],
""responseCode"": ""R123"",
""responseType"": ""INFO"",
""responseMessage"": ""Workflow Complete."",
""tenantID"": ""V123242""
""clientResponsePayload"": {
""orchestrationDecisions"": [
""decisionSource"": ""PreciseId"",
""Continue & Investigate""
""decisionText"": ""Continue & Investigate"",
""nextAction"": ""Continue"",
""appReference"": ""22222"",
""decisionTime"": ""2020-05-28T18:58:43Z""
public static void Main()
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];