confluent-kafka-dotnet
Show / Hide Table of Contents

Class Decimal

Inheritance
object
Decimal
Implements
IMessage<Decimal>
IEquatable<Decimal>
IDeepCloneable<Decimal>
IBufferMessage
IMessage
Inherited Members
object.Equals(object, object)
object.GetType()
object.ReferenceEquals(object, object)
Namespace: Confluent.SchemaRegistry.Serdes.Protobuf
Assembly: Confluent.SchemaRegistry.Serdes.Protobuf.dll
Syntax
public sealed class Decimal : IMessage<Decimal>, IEquatable<Decimal>, IDeepCloneable<Decimal>, IBufferMessage, IMessage

Constructors

Decimal()

Declaration
public Decimal()

Decimal(Decimal)

Declaration
public Decimal(Decimal other)
Parameters
TypeNameDescription
Decimalother

Fields

PrecisionFieldNumber

Field number for the "precision" field.

Declaration
public const int PrecisionFieldNumber = 2
Field Value
TypeDescription
int

ScaleFieldNumber

Field number for the "scale" field.

Declaration
public const int ScaleFieldNumber = 3
Field Value
TypeDescription
int

ValueFieldNumber

Field number for the "value" field.

Declaration
public const int ValueFieldNumber = 1
Field Value
TypeDescription
int

Properties

Descriptor

Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
TypeDescription
MessageDescriptor

Parser

Declaration
public static MessageParser<Decimal> Parser { get; }
Property Value
TypeDescription
MessageParser<Decimal>

Precision

The precision

Declaration
public uint Precision { get; set; }
Property Value
TypeDescription
uint

Scale

The scale

Declaration
public int Scale { get; set; }
Property Value
TypeDescription
int

Value

The two's-complement representation of the unscaled integer value in big-endian byte order

Declaration
public ByteString Value { get; set; }
Property Value
TypeDescription
ByteString

Methods

CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

Declaration
public int CalculateSize()
Returns
TypeDescription
int

The number of bytes required to write this message to a coded output stream.

Clone()

Creates a deep clone of this object.

Declaration
public Decimal Clone()
Returns
TypeDescription
Decimal

A deep clone of this object.

Equals(Decimal)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals(Decimal other)
Parameters
TypeNameDescription
Decimalother

An object to compare with this object.

Returns
TypeDescription
bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

Declaration
public override bool Equals(object other)
Parameters
TypeNameDescription
objectother
Returns
TypeDescription
bool

true if the specified object is equal to the current object; otherwise, false.

Overrides
object.Equals(object)

GetHashCode()

Serves as the default hash function.

Declaration
public override int GetHashCode()
Returns
TypeDescription
int

A hash code for the current object.

Overrides
object.GetHashCode()

MergeFrom(Decimal)

Merges the given message into this one.

Declaration
public void MergeFrom(Decimal other)
Parameters
TypeNameDescription
Decimalother
Remarks

See the user guide for precise merge semantics.

MergeFrom(CodedInputStream)

Merges the data from the specified coded input stream with the current message.

Declaration
public void MergeFrom(CodedInputStream input)
Parameters
TypeNameDescription
CodedInputStreaminput
Remarks

See the user guide for precise merge semantics.

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
TypeDescription
string

A string that represents the current object.

Overrides
object.ToString()

WriteTo(CodedOutputStream)

Writes the data to the given coded output stream.

Declaration
public void WriteTo(CodedOutputStream output)
Parameters
TypeNameDescription
CodedOutputStreamoutput

Coded output stream to write the data to. Must not be null.

Implements

Google.Protobuf.IMessage<T>
IEquatable<T>
Google.Protobuf.IDeepCloneable<T>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage

Extension Methods

DecimalExtensions.ToSystemDecimal(Decimal)
In this article