Expression.ListBind Method (MethodInfo, ElementInit[])
.NET Framework (current version)
Creates a MemberListBinding object based on a specified property accessor method.
Assembly: System.Core (in System.Core.dll)
public static MemberListBinding ListBind( MethodInfo propertyAccessor, params ElementInit[] initializers )
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 null. -or- One or more elements of initializers are null. |
| 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. |
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: