Expression::ListBind Method (MethodInfo^, IEnumerable<ElementInit^>^)
Creates a MemberListBinding based on a specified property accessor method.
Assembly: System.Core (in System.Core.dll)
public: static MemberListBinding^ ListBind( MethodInfo^ propertyAccessor, IEnumerable<ElementInit^>^ initializers )
Parameters
- propertyAccessor
-
Type:
System.Reflection::MethodInfo^
A MethodInfo that represents a property accessor method.
- initializers
-
Type:
System.Collections.Generic::IEnumerable<ElementInit^>^
An IEnumerable<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.
| 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. |
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