Sto convertendo la mia implementazione newtonsoft in una nuova libreria JSON in .net core 3.0. Ho il codice seguente
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;
}
}
Non riesco a trovare alcun equivalente per JObject.Parse(json);
Inoltre quale sarà l'attributo JsonProperty
equivalente
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; }
}
Un'altra cosa che cercherò per l'equivalente di Formating.None
.