在我们的Xamarin.forms应用程序中,我们在模型中使用ReactiveProperties。 例如,示例MessageAlert模型就像
public class MessageAlert
{
public ReactiveProperty<bool> IsNew { get; set; } = new ReactiveProperty<bool>();
public DateTime ReceivedDate { get; set; }
public string Text { get; set; }
}
我们正在使用NewtonSoft来解析JSON对象。
我的问题是如何解析反应性属性(例如本例中的 IsNew ),因为默认情况下NewtonSoft无法解析这些属性。
感谢您的帮助。