Class MemberListBindingExpressionTreeNode
Represents an expression tree node containing a member list binding.
Inheritance
Implements
Inherited Members
Namespace: System.Linq.Expressions
Assembly: Nuqleon.Linq.CompilerServices.dll
Syntax
public sealed class MemberListBindingExpressionTreeNode : MemberBindingExpressionTreeNode, IEquatable<ExpressionTreeNode>, IEquatable<MemberBindingExpressionTreeNode>, IEquatable<MemberListBindingExpressionTreeNode>
Constructors
MemberListBindingExpressionTreeNode(MemberListBinding)
Creates an expression tree node containing a member list binding.
Declaration
public MemberListBindingExpressionTreeNode(MemberListBinding memberListBinding)
Parameters
Type | Name | Description |
---|---|---|
System.Linq.Expressions.MemberListBinding | memberListBinding | Member list binding contained in the expression tree. |
Properties
MemberListBinding
Gets the member list binding contained in the expression tree.
Declaration
public MemberListBinding MemberListBinding { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.MemberListBinding |
Methods
Equals(MemberListBindingExpressionTreeNode)
Checks whether the current node is equal to the specified member list binding expression tree node. Equality for expression tree nodes is based on structural properties of the trees.
Declaration
public bool Equals(MemberListBindingExpressionTreeNode other)
Parameters
Type | Name | Description |
---|---|---|
MemberListBindingExpressionTreeNode | other | Member list binding expression tree node to compare to. |
Returns
Type | Description |
---|---|
System.Boolean | true if both nodes are equal; otherwise, false. |
Equals(Object)
Checks whether the current node is equal to the specified object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | Object to compare to. |
Returns
Type | Description |
---|---|
System.Boolean | true if the current instance and the specified object are equal; otherwise, false. |
Overrides
GetHashCode()
Gets a hash code representation of the current member binding node instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code representation of the current member binding node instance. |
Overrides
ToString()
Gets a string representation of the current member list binding node instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String representation of the current member list binding node instance. |