Expression.Bind Method (MethodInfo, Expression)

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

Creates a MemberAssignment that represents the initialization of a member by using a property accessor method.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)

Syntax

'Declaration
Public Shared Function Bind ( _
    propertyAccessor As MethodInfo, _
    expression As Expression _
) As MemberAssignment
public static MemberAssignment Bind(
    MethodInfo propertyAccessor,
    Expression expression
)

Parameters

Return Value

Type: System.Linq.Expressions.MemberAssignment
A MemberAssignment that has the BindingType property equal to Assignment, the Member property set to the PropertyInfo that represents the property accessed in propertyAccessor, and the Expression property set to expression.

Exceptions

Exception Condition
ArgumentNullException

propertyAccessor or expression is nulla null reference (Nothing in Visual Basic).

ArgumentException

propertyAccessor does not represent a property accessor method.

-or-

The property accessed by propertyAccessor does not have a set accessor.

-or-

expression.Type is not assignable to the type of the field or property that member represents.

Remarks

The Type property of expression must be assignable to the type represented by the PropertyType property of the property accessed in propertyAccessor.

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.