मैं अपने न्यूटनसॉफ्ट कार्यान्वयन को नए JSON लाइब्रेरी में .net कोर 3.0 में परिवर्तित कर रहा हूं। मेरे पास निम्न कोड है
public static bool IsValidJson(string json)
{
try
{
JObject.Parse(json);
return true;
}
catch (Exception ex)
{
Logger.ErrorFormat("Invalid Json Received {0}", json);
Logger.Fatal(ex.Message);
return false;
}
}
मैं इसके लिए कोई समकक्ष नहीं पा रहा हूं JObject.Parse(json);
इसके अलावा क्या विशेषता के JsonProperty
बराबर होगा
public class ResponseJson
{
[JsonProperty(PropertyName = "status")]
public bool Status { get; set; }
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
[JsonProperty(PropertyName = "Log_id")]
public string LogId { get; set; }
[JsonProperty(PropertyName = "Log_status")]
public string LogStatus { get; set; }
public string FailureReason { get; set; }
}
एक और बात मैं इसके बराबर की तलाश करूंगा Formating.None
।