Table of Contents

Struct Int64Range

Namespace
Examine.Search
Assembly
Examine.Core.dll

Represents a range over long values.

public readonly struct Int64Range
Inherited Members

Constructors

Int64Range(string, long, bool, long, bool)

public Int64Range(string label, long min, bool minInclusive, long max, bool maxInclusive)

Parameters

label string
min long
minInclusive bool
max long
maxInclusive bool

Properties

Label

Label that identifies this range.

public string Label { get; }

Property Value

string

Max

Maximum.

public long Max { get; }

Property Value

long

MaxInclusive

True if the maximum value is inclusive.

public bool MaxInclusive { get; }

Property Value

bool

Min

Minimum.

public long Min { get; }

Property Value

long

MinInclusive

True if the minimum value is inclusive.

public bool MinInclusive { get; }

Property Value

bool