Class DateRangeQuery.ReadOnly
Inheritance
DateRangeQuery.ReadOnly
Assembly: Couchbase.NetClient.dll
Syntax
public record DateRangeQuery.ReadOnly : IEquatable<DateRangeQuery.ReadOnly>
Constructors
|
Edit this page
View Source
ReadOnly(DateTime?, bool, DateTime?, bool, string, string)
Declaration
public ReadOnly(DateTime? StartTime, bool InclusiveStart, DateTime? EndTime, bool InclusiveEnd, string ParserName, string Field)
Parameters
Properties
|
Edit this page
View Source
EndTime
Declaration
public DateTime? EndTime { get; init; }
Property Value
|
Edit this page
View Source
Field
Declaration
public string Field { get; init; }
Property Value
|
Edit this page
View Source
InclusiveEnd
Declaration
public bool InclusiveEnd { get; init; }
Property Value
|
Edit this page
View Source
InclusiveStart
Declaration
public bool InclusiveStart { get; init; }
Property Value
|
Edit this page
View Source
ParserName
Declaration
public string ParserName { get; init; }
Property Value
|
Edit this page
View Source
StartTime
Declaration
public DateTime? StartTime { get; init; }
Property Value
Implements