Beispiel #1
0
        public static ISpecificEntityFilter FromJsonProperty(JObject jsonObject, string propertyName, ISpecificEntityFilter defaultValue = null)
        {
            //IL_0011: Unknown result type (might be due to invalid IL or missing references)
            //IL_0018: Invalid comparison between Unknown and I4
            JProperty val = jsonObject.Property(propertyName);

            if (val == null || (int)val.get_Value().get_Type() == 10)
            {
                return(defaultValue);
            }
            return(FromJsonToken(val.get_Value()));
        }
Beispiel #2
0
 public override void PopulateFromJson(JObject jsonObject)
 {
     base.PopulateFromJson(jsonObject);
     m_specificEntity = ISpecificEntityFilterUtils.FromJsonProperty(jsonObject, "specificEntity");
 }