Expression.ListBind Method (MethodInfo, ElementInit())
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a MemberListBinding object based on a specified property accessor method.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function ListBind ( _ propertyAccessor As MethodInfo, _ ParamArray initializers As ElementInit() _ ) As MemberListBinding
Parameters
- propertyAccessor
- Type: System.Reflection.MethodInfo
A MethodInfo that represents a property accessor method.
- initializers
- Type:
System.Linq.Expressions.ElementInit
()
An array of ElementInit objects to use to populate the Initializers collection.
Return Value
Type: System.Linq.Expressions.MemberListBindingA 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.
| Exception | Condition |
|---|---|
| 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. |
Show: