Class Parameter
AST Node representing a parameter reference. e.g. in
From X In Timesheet Where X.Description Like @Search Select XInherited 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 Parameter : ExpressionConstructors
Parameter(String)
Initializes a new instance of the Parameter class.
Declaration
public Parameter(string name)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | the name of the parameter. | 
Properties
Name
Gets the Name of the parameter.
Declaration
public string Name { get; }Property Value
| Type | Description | 
|---|---|
| System.String | 
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. | 
Returns
| Type | Description | 
|---|---|
| Node | Returns the return value of the call to VisitQuery(Query). |