Ejemplo n.º 1
0
 public override void PopulateFromJson(JObject jsonObject)
 {
     base.PopulateFromJson(jsonObject);
     m_precomputedData      = PrecomputedData.FromJsonProperty(jsonObject, "precomputedData");
     m_families             = Serialization.JsonArrayAsList <Family>(jsonObject, "families");
     m_effectAreaDefinition = IAreaDefinitionUtils.FromJsonProperty(jsonObject, "effectAreaDefinition");
 }
        public static IAreaDefinition FromJsonProperty(JObject jsonObject, string propertyName, IAreaDefinition 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()));
        }