コード例 #1
0
        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();
        }
コード例 #2
0
        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();
        }