System.Linq.Expressions.MemberListBinding.Update C# (CSharp) Method

Update() public method

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
public Update ( IEnumerable initializers ) : MemberListBinding
initializers IEnumerable The property of the result.
return MemberListBinding
        public MemberListBinding Update(IEnumerable<ElementInit> initializers)
        {
            if (initializers == Initializers)
            {
                return this;
            }
            return Expression.ListBind(Member, initializers);
        }
    }

Usage Example

Beispiel #1
0
        /// <summary>
        ///     Visits the children of the <see cref="MemberListBinding" />.
        /// </summary>
        /// <param name="node">The expression to visit.</param>
        /// <returns>
        ///     The modified expression, if it or any subexpression was modified;
        ///     otherwise, returns the original expression.
        /// </returns>
        protected virtual MemberListBinding VisitMemberListBinding(MemberListBinding node)
        {
            if (node == null)
            {
                throw new ArgumentNullException(nameof(node));
            }

            return(node.Update(Visit(node.Initializers, VisitElementInit)));
        }
All Usage Examples Of System.Linq.Expressions.MemberListBinding::Update