Tôi đang chuyển đổi triển khai newtonsoft của mình sang thư viện JSON mới trong .net core 3.0. Tôi có đoạn mã sau
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;
}
}
Tôi không thể tìm thấy bất kỳ tương đương cho JObject.Parse(json);
Ngoài ra những gì sẽ là thuộc tính JsonProperty
tương đương
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; }
}
Một điều nữa tôi sẽ tìm kiếm tương đương Formating.None
.