1 write to Members
System.Linq.Expressions (1)
System\Linq\Expressions\NewExpression.cs (1)
26Members = members;
9 references to Members
System.Linq.Expressions (9)
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
557return cr.Finish(cr.Rewrite ? new NewExpression(node.Constructor, cr[0, -1]!, node.Members) : expr);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
361public ReadOnlyCollection<MemberInfo>? Members => _node.Members;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
563ReadOnlyCollection<MemberInfo>? members = node.Members;
System\Linq\Expressions\NewExpression.cs (6)
92return Members != null ? New(Constructor!, arguments, Members) : New(Constructor!, arguments); 159/// <param name="members">An <see cref="IEnumerable{T}"/> of <see cref="MemberInfo"/> objects to use to populate the <see cref="NewExpression.Members"/> collection.</param> 160/// <returns>A <see cref="NewExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.New"/> and the <see cref="NewExpression.Constructor"/>, <see cref="NewExpression.Arguments"/> and <see cref="NewExpression.Members"/> properties set to the specified value.</returns> 184/// <param name="members">An Array of <see cref="MemberInfo"/> objects to use to populate the <see cref="NewExpression.Members"/> collection.</param> 185/// <returns>A <see cref="NewExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.New"/> and the <see cref="NewExpression.Constructor"/>, <see cref="NewExpression.Arguments"/> and <see cref="NewExpression.Members"/> properties set to the specified value.</returns>