Expression.ListBind Method (MethodInfo, array<ElementInit[])

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Creates a MemberListBinding object 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, _
    ParamArray initializers As ElementInit() _
) As MemberListBinding
public static MemberListBinding ListBind(
    MethodInfo propertyAccessor,
    params ElementInit[] initializers
)

Parameters

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.