Class FindOptions
Inheritance
System.Object
FindOptions
Assembly: InfluxDB.Client.dll
Syntax
public class FindOptions : object
Fields
AfterKey
Declaration
public const string AfterKey = null
Field Value
Type |
Description |
System.String |
|
DescendingKey
Declaration
public const string DescendingKey = null
Field Value
Type |
Description |
System.String |
|
LimitKey
Declaration
public const string LimitKey = null
Field Value
Type |
Description |
System.String |
|
OffsetKey
Declaration
public const string OffsetKey = null
Field Value
Type |
Description |
System.String |
|
SortByKey
Declaration
public const string SortByKey = null
Field Value
Type |
Description |
System.String |
|
Properties
After
Declaration
public string After { get; set; }
Property Value
Type |
Description |
System.String |
|
Descending
Declaration
public bool? Descending { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
Limit
Declaration
public int? Limit { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
Offset
Declaration
public int? Offset { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
SortBy
Declaration
public string SortBy { get; set; }
Property Value
Type |
Description |
System.String |
|