Class MemberExpression
Represents accessing a property of an object
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class MemberExpression : Expression, IEquatable<Expression>, IEquatable<MemberExpression>
Constructors
MemberExpression(String, Expression, PropertyKey)
Initializes a new instance of the Member
Declaration
public MemberExpression(string type = null, Expression _object = null, PropertyKey property = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | Type of AST node. |
Expression | _object | _object. |
Property |
property | property. |
Properties
Object
Gets or Sets Object
Declaration
public Expression Object { get; set; }
Property Value
Type | Description |
---|---|
Expression |
Property
Gets or Sets Property
Declaration
public PropertyKey Property { get; set; }
Property Value
Type | Description |
---|---|
Property |
Type
Type of AST node
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System. |
Type of AST node |
Methods
Equals(MemberExpression)
Returns true if MemberExpression instances are equal
Declaration
public bool Equals(MemberExpression input)
Parameters
Type | Name | Description |
---|---|---|
Member |
input | Instance of MemberExpression to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System. |
input | Object to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System. |
Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System. |
JSON string presentation of the object |
Overrides
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
String presentation of the object |
Overrides
Implements
IEquatable<>
IEquatable<>