Expression.MemberBind Method (MemberInfo, array<MemberBinding[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Creates a MemberMemberBinding that represents the recursive initialization of members of a field or property.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
Syntax
'Declaration
Public Shared Function MemberBind ( _
member As MemberInfo, _
ParamArray bindings As MemberBinding() _
) As MemberMemberBinding
public static MemberMemberBinding MemberBind(
MemberInfo member,
params MemberBinding[] bindings
)
Parameters
- member
Type: System.Reflection.MemberInfo
The MemberInfo to set the Member property equal to.
- bindings
Type: array<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 and the Member and Bindings properties set to the specified values.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | member or bindings is nulla null reference (Nothing in Visual Basic). |
ArgumentException | member does not represent a field or property. -or- The Member property of an element of bindings does not represent a member of the type of the field or property that member represents. |
Remarks
The member parameter must represent a field or property.
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.