ListBind Method (MethodInfo, IEnumerable(ElementInit))

Expression.ListBind Method (MethodInfo, IEnumerable(Of ElementInit))

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a MemberListBinding based on a specified property accessor method.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

'Declaration
Public Shared Function ListBind ( _
	propertyAccessor As MethodInfo, _
	initializers As IEnumerable(Of ElementInit) _
) As MemberListBinding

Parameters

propertyAccessor
Type: System.Reflection.MethodInfo
A MethodInfo that represents a property accessor method.
initializers
Type: System.Collections.Generic.IEnumerable(Of ElementInit)
An IEnumerable(Of T) that contains ElementInit objects to use to populate the Initializers collection.

Return Value

Type: System.Linq.Expressions.MemberListBinding
A MemberListBinding that has the BindingType property equal to ListBinding, the Member property set to the MemberInfo that represents the property accessed in propertyAccessor, and Initializers populated with the elements of initializers.

ExceptionCondition
ArgumentNullException

propertyAccessor is Nothing.

-or-

One or more elements of initializers are Nothing.

ArgumentException

propertyAccessor does not represent a property accessor method.

-or-

The PropertyType of the property that the method represented by propertyAccessor accesses does not implement IEnumerable.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft