System.Linq.Expressions.LabelExpression.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 ( LabelTarget target, Expression defaultValue ) : LabelExpression
target LabelTarget The property of the result.
defaultValue Expression The property of the result.
return LabelExpression
        public LabelExpression Update(LabelTarget target, Expression defaultValue)
        {
            if (target == Target && defaultValue == DefaultValue)
            {
                return this;
            }
            return Expression.Label(target, defaultValue);
        }
    }

Usage Example

Esempio n. 1
0
        /// <summary>
        ///     Visits the children of the <see cref="LabelExpression" />.
        /// </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 internal virtual Expression VisitLabel(LabelExpression node)
        {
            if (node == null)
            {
                throw new ArgumentNullException(nameof(node));
            }

            return(node.Update(VisitLabelTarget(node.Target), Visit(node.DefaultValue)));
        }
All Usage Examples Of System.Linq.Expressions.LabelExpression::Update