Expression.MemberBind Method (MemberInfo, MemberBinding())
.NET Framework (current version)
Creates a MemberMemberBinding that represents the recursive initialization of members of a field or property.
Assembly: System.Core (in System.Core.dll)
Public Shared Function MemberBind ( member As MemberInfo, ParamArray bindings As MemberBinding() ) As MemberMemberBinding
Parameters
- member
-
Type:
System.Reflection.MemberInfo
The MemberInfo to set the Member property equal to.
- bindings
-
Type:
System.Linq.Expressions.MemberBinding()
An array of MemberBinding objects to use to populate the Bindings collection.
Return Value
Type: System.Linq.Expressions.MemberMemberBindingA MemberMemberBinding that has the BindingType property equal to MemberBinding and the Member and Bindings properties set to the specified values.
| Exception | Condition |
|---|---|
| ArgumentNullException | member or bindings is null. |
| 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. |
The member parameter must represent a field or property.
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: