Newtonsoft's CASE Insensitive selecting path to a jason token
The following codes allow us travel select key path regardless of whether you're using upper or lower case.
var objectJson = JObject.Parse(validJsonObject);
objectJson.GetValue(jsonPathKey, StringComparison.OrdinalIgnoreCase).Value
Comments