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