Class QueryOptions
AST Node representing the query options in a query.
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 QueryOptions : Node
Constructors
QueryOptions(Boolean)
Initializes a new instance of the QueryOptions class.
Declaration
public QueryOptions(bool versionInfoOnly)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | versionInfoOnly | true if only the version info should be selected. |
Properties
VersionInfoOnly
Gets a value indicating whether only version information should be selected.
Declaration
public bool VersionInfoOnly { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Accept(Visitor)
Dispatches to the correct VisitQuery(Query) function.
Declaration
public override Node Accept(Visitor visitor)
Parameters
Type | Name | Description |
---|---|---|
Visitor | visitor | the visitor to dispatch. |
Returns
Type | Description |
---|---|
Node | Returns the value returned by the VisitQuery(Query) call. |