10 references to ListBinding
System.Linq.Expressions (10)
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (1)
948case MemberBindingType.ListBinding:
System\Linq\Expressions\Compiler\StackSpiller.Bindings.cs (1)
37case MemberBindingType.ListBinding:
System\Linq\Expressions\ExpressionVisitor.cs (1)
593MemberBindingType.ListBinding => VisitMemberListBinding((MemberListBinding)node),
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
2735case MemberBindingType.ListBinding:
System\Linq\Expressions\MemberInitExpression.cs (1)
108MemberBindingType.ListBinding => ReduceListInit(member, ((MemberListBinding)binding).Initializers, keepOnStack: false),
System\Linq\Expressions\MemberListBinding.cs (5)
21: base(MemberBindingType.ListBinding, member) 60/// <returns>A <see cref="MemberListBinding"/> that has the <see cref="MemberBinding.BindingType"/> property equal to <see cref="MemberBindingType.ListBinding"/> and the <see cref="MemberBinding.Member"/> and <see cref="MemberListBinding.Initializers"/> properties set to the specified values.</returns> 73/// <returns>A <see cref="MemberListBinding"/> that has the <see cref="MemberBinding.BindingType"/> property equal to <see cref="MemberBindingType.ListBinding"/> and the <see cref="MemberBinding.Member"/> and <see cref="MemberListBinding.Initializers"/> properties set to the specified values.</returns> 92/// <returns>A <see cref="MemberListBinding"/> that has the <see cref="MemberBinding.BindingType"/> property equal to <see cref="MemberBindingType.ListBinding"/>, the <see cref="MemberBinding.Member"/> property set to the <see cref="MemberInfo"/> that represents the property accessed in <paramref name="propertyAccessor"/>, and <see cref="MemberListBinding.Initializers"/> populated with the elements of <paramref name="initializers"/>.</returns> 106/// <returns>A <see cref="MemberListBinding"/> that has the <see cref="MemberBinding.BindingType"/> property equal to <see cref="MemberBindingType.ListBinding"/>, the <see cref="MemberBinding.Member"/> property set to the <see cref="MemberInfo"/> that represents the property accessed in <paramref name="propertyAccessor"/>, and <see cref="MemberListBinding.Initializers"/> populated with the elements of <paramref name="initializers"/>.</returns>