MemberBind Method (MethodInfo, MemberBinding[])

Expression.MemberBind Method (MethodInfo, MemberBinding())

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Creates a MemberMemberBinding that represents the recursive initialization of members of a member that is accessed by using a property accessor method.

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

'Declaration
Public Shared Function MemberBind ( _
	propertyAccessor As MethodInfo, _
	ParamArray bindings As MemberBinding() _
) As MemberMemberBinding

Parameters

propertyAccessor
Type: System.Reflection.MethodInfo
The MethodInfo that represents a property accessor method.
bindings
Type: System.Linq.Expressions.MemberBinding ()
An array of MemberBinding objects to use to populate the Bindings collection.

Return Value

Type: System.Linq.Expressions.MemberMemberBinding
A MemberMemberBinding that has the BindingType property equal to MemberBinding, the Member property set to the PropertyInfo that represents the property accessed in propertyAccessor, and Bindings properties set to the specified values.

ExceptionCondition
ArgumentNullException

propertyAccessor or bindings is Nothing.

ArgumentException

propertyAccessor does not represent a property accessor method.

-or-

The Member property of an element of bindings does not represent a member of the type of the property accessed by the method that propertyAccessor represents.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft