Class Range (2.3.0)

public sealed class Range : IMessage<Range>, IEquatable<Range>, IDeepCloneable<Range>, IBufferMessage, IMessage

Range of numerical values, inclusive of min and exclusive of max. If the open range "< range.max" is desired, set range.min = -infinity. If the open range ">= range.min" is desired, set range.max = infinity.

Inheritance

Object > Range

Namespace

Google.Cloud.Monitoring.V3

Assembly

Google.Cloud.Monitoring.V3.dll

Constructors

Range()

public Range()

Range(Range)

public Range(Range other)
Parameter
NameDescription
otherRange

Properties

Max

public double Max { get; set; }

Range maximum.

Property Value
TypeDescription
Double

Min

public double Min { get; set; }

Range minimum.

Property Value
TypeDescription
Double