Expression.ListBind Method (MethodInfo, IEnumerable<ElementInit>)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a MemberListBinding based on a specified property accessor method.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function ListBind ( _
propertyAccessor As MethodInfo, _
initializers As IEnumerable(Of ElementInit) _
) As MemberListBinding
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.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | propertyAccessor is nulla null reference (Nothing in Visual Basic). -or- One or more elements of initializers are nulla null reference (Nothing in Visual Basic). |
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. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.