Class MemberMemberBindingExpressionTreeNode
Represents an expression tree node containing a member member binding.
Inheritance
Implements
Inherited Members
Namespace: System.Linq.Expressions
Assembly: Nuqleon.Linq.CompilerServices.dll
Syntax
public sealed class MemberMemberBindingExpressionTreeNode : MemberBindingExpressionTreeNode, IEquatable<ExpressionTreeNode>, IEquatable<MemberBindingExpressionTreeNode>, IEquatable<MemberMemberBindingExpressionTreeNode>
Constructors
MemberMemberBindingExpressionTreeNode(MemberMemberBinding)
Creates an expression tree node containing a member member binding.
Declaration
public MemberMemberBindingExpressionTreeNode(MemberMemberBinding memberMemberBinding)
Parameters
Type | Name | Description |
---|---|---|
System.Linq.Expressions.MemberMemberBinding | memberMemberBinding | Member member binding contained in the expression tree. |
Properties
MemberMemberBinding
Gets the member member binding contained in the expression tree.
Declaration
public MemberMemberBinding MemberMemberBinding { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.MemberMemberBinding |
Methods
Equals(MemberMemberBindingExpressionTreeNode)
Checks whether the current node is equal to the specified member member binding expression tree node. Equality for expression tree nodes is based on structural properties of the trees.
Declaration
public bool Equals(MemberMemberBindingExpressionTreeNode other)
Parameters
Type | Name | Description |
---|---|---|
MemberMemberBindingExpressionTreeNode | other | Member member 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 member binding node instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String representation of the current member member binding node instance. |