Patcher.Rules.Proxies.ProxyFeatureFactory.UpdateFromConditionCollectionProxy C# (CSharp) Method

UpdateFromConditionCollectionProxy() public static method

public static UpdateFromConditionCollectionProxy ( this target, IConditionCollection value ) : void
target this
value IConditionCollection
return void
        public static void UpdateFromConditionCollectionProxy(this IFeaturingConditions target, IConditionCollection value)
        {
            if (value == null)
                throw new ArgumentNullException("value", "Cannot assign a NULL to a collection.");

            target.Conditions = ((ConditionCollectionProxy)value).CopyFieldCollection();
        }

Same methods

ProxyFeatureFactory::UpdateFromConditionCollectionProxy ( this target, IEffectCollection value ) : void