Show / Hide Table of Contents

Class Distribution.Types.Range

The range of the population values.

Inheritance
System.Object
Distribution.Types.Range
Implements
IMessage<Distribution.Types.Range>
IMessage
System.IEquatable<Distribution.Types.Range>
IDeepCloneable<Distribution.Types.Range>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Api
Assembly: Google.Api.CommonProtos.dll
Syntax
public sealed class Range : IMessage<Distribution.Types.Range>, IMessage, IEquatable<Distribution.Types.Range>, IDeepCloneable<Distribution.Types.Range>

Constructors

Range()

Declaration
public Range()

Range(Distribution.Types.Range)

Declaration
public Range(Distribution.Types.Range other)
Parameters
Type Name Description
Distribution.Types.Range other

Fields

MaxFieldNumber

Field number for the "max" field.

Declaration
public const int MaxFieldNumber = 2
Field Value
Type Description
System.Int32

MinFieldNumber

Field number for the "min" field.

Declaration
public const int MinFieldNumber = 1
Field Value
Type Description
System.Int32

Properties

Descriptor

Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
Type Description
MessageDescriptor

Max

The maximum of the population values.

Declaration
public double Max { get; set; }
Property Value
Type Description
System.Double

Min

The minimum of the population values.

Declaration
public double Min { get; set; }
Property Value
Type Description
System.Double

Parser

Declaration
public static MessageParser<Distribution.Types.Range> Parser { get; }
Property Value
Type Description
MessageParser<Distribution.Types.Range>

Methods

CalculateSize()

Declaration
public int CalculateSize()
Returns
Type Description
System.Int32
Implements
IMessage.CalculateSize()

Clone()

Declaration
public Distribution.Types.Range Clone()
Returns
Type Description
Distribution.Types.Range
Implements
IDeepCloneable<T>.Clone()

Equals(Distribution.Types.Range)

Declaration
public bool Equals(Distribution.Types.Range other)
Parameters
Type Name Description
Distribution.Types.Range other
Returns
Type Description
System.Boolean
Implements
System.IEquatable<T>.Equals(T)

Equals(Object)

Declaration
public override bool Equals(object other)
Parameters
Type Name Description
System.Object other
Returns
Type Description
System.Boolean
Overrides
System.Object.Equals(System.Object)

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32
Overrides
System.Object.GetHashCode()

MergeFrom(Distribution.Types.Range)

Declaration
public void MergeFrom(Distribution.Types.Range other)
Parameters
Type Name Description
Distribution.Types.Range other
Implements
IMessage<T>.MergeFrom(T)

MergeFrom(CodedInputStream)

Declaration
public void MergeFrom(CodedInputStream input)
Parameters
Type Name Description
CodedInputStream input
Implements
IMessage.MergeFrom(CodedInputStream)

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

WriteTo(CodedOutputStream)

Declaration
public void WriteTo(CodedOutputStream output)
Parameters
Type Name Description
CodedOutputStream output
Implements
IMessage.WriteTo(CodedOutputStream)

Explicit Interface Implementations

IMessage.Descriptor

Declaration
MessageDescriptor IMessage.Descriptor { get; }
Returns
Type Description
MessageDescriptor
Implements
IMessage.Descriptor
Back to top