newtonsoft 구현을 .net core 3.0의 새로운 JSON 라이브러리로 변환하고 있습니다. 다음 코드가 있습니다
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
.