Class SkipAndTake
Holds query options for skip and take.
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 SkipAndTake : Node
Constructors
SkipAndTake(Int32, Int32)
Initializes a new instance of the SkipAndTake class.
Declaration
public SkipAndTake(int skip, int take)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | skip | The number of items to skip. |
System.Int32 | take | The number of items to take. |
Properties
Skip
Gets the number of items to skip.
Declaration
public int Skip { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Take
Gets the number of items to take.
Declaration
public int Take { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
Accept(Visitor)
Dispatches the visitor.
Declaration
public override Node Accept(Visitor visitor)
Parameters
Type | Name | Description |
---|---|---|
Visitor | visitor | The visitor to accept. |
Returns
Type | Description |
---|---|
Node | Returns the result of a call to VisitSkipAndTake(SkipAndTake). |