Class PipeExpression
Call expression with pipe argument
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class PipeExpression : Expression, IEquatable<Expression>, IEquatable<PipeExpression>
Constructors
PipeExpression(String, Expression, CallExpression)
Initializes a new instance of the Pipe
Declaration
public PipeExpression(string type = null, Expression argument = null, CallExpression call = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | Type of AST node. |
Expression | argument | argument. |
Call |
call | call. |
Properties
Argument
Gets or Sets Argument
Declaration
public Expression Argument { get; set; }
Property Value
Type | Description |
---|---|
Expression |
Call
Gets or Sets Call
Declaration
public CallExpression Call { get; set; }
Property Value
Type | Description |
---|---|
Call |
Type
Type of AST node
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System. |
Type of AST node |
Methods
Equals(PipeExpression)
Returns true if PipeExpression instances are equal
Declaration
public bool Equals(PipeExpression input)
Parameters
Type | Name | Description |
---|---|---|
Pipe |
input | Instance of PipeExpression 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<>