Class FunctionExpression
Function expression
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class FunctionExpression : Expression, IEquatable<Expression>, IEquatable<FunctionExpression>
Constructors
FunctionExpression(String, List<Property>, Node)
Initializes a new instance of the FunctionExpression class.
Declaration
public FunctionExpression(string type = null, List<Property> _params = null, Node body = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | type | Type of AST node. |
List<Property> | _params | Function parameters. |
Node | body | body. |
Properties
Body
Gets or Sets Body
Declaration
public Node Body { get; set; }
Property Value
Type | Description |
---|---|
Node |
Params
Function parameters
Declaration
public List<Property> Params { get; set; }
Property Value
Type | Description |
---|---|
List<Property> | Function parameters |
Type
Type of AST node
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | Type of AST node |
Methods
Equals(FunctionExpression)
Returns true if FunctionExpression instances are equal
Declaration
public bool Equals(FunctionExpression input)
Parameters
Type | Name | Description |
---|---|---|
FunctionExpression | input | Instance of FunctionExpression 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<>
IEquatable<>