Class GuidConstant
AST Node representing a GUID value.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.QueryLanguage.Syntax
Assembly: TimeCockpit.Data.dll
Syntax
public class GuidConstant : Constant
Constructors
GuidConstant(Guid)
Initializes a new instance of the GuidConstant class.
Declaration
public GuidConstant(Guid value)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | value | The value of the constant. |
Properties
Value
Gets the value of the constant.
Declaration
public Guid Value { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Methods
Accept(Visitor)
Dispatches to the correct VisitQuery(Query) method.
Declaration
public override Node Accept(Visitor visitor)
Parameters
Type | Name | Description |
---|---|---|
Visitor | visitor | The visitor to dispatch to. |
Returns
Type | Description |
---|---|
Node | Returns the value returned by the call to VisitQuery(Query). |