confluent-kafka-dotnet
Show / Hide Table of Contents

Class Meta

Inheritance
object
Meta
Implements
IMessage<Meta>
IEquatable<Meta>
IDeepCloneable<Meta>
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 Meta : IMessage<Meta>, IEquatable<Meta>, IDeepCloneable<Meta>, IBufferMessage, IMessage

Constructors

Meta()

Declaration
public Meta()

Meta(Meta)

Declaration
public Meta(Meta other)
Parameters
Type Name Description
Meta other

Fields

DocFieldNumber

Field number for the "doc" field.

Declaration
public const int DocFieldNumber = 1
Field Value
Type Description
int

ParamsFieldNumber

Field number for the "params" field.

Declaration
public const int ParamsFieldNumber = 2
Field Value
Type Description
int

TagsFieldNumber

Field number for the "tags" field.

Declaration
public const int TagsFieldNumber = 3
Field Value
Type Description
int

Properties

Descriptor

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

Doc

Declaration
public string Doc { get; set; }
Property Value
Type Description
string

Params

Declaration
public MapField<string, string> Params { get; }
Property Value
Type Description
MapField<string, string>

Parser

Declaration
public static MessageParser<Meta> Parser { get; }
Property Value
Type Description
MessageParser<Meta>

Tags

Declaration
public RepeatedField<string> Tags { get; }
Property Value
Type Description
RepeatedField<string>

Methods

CalculateSize()

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

Declaration
public int CalculateSize()
Returns
Type Description
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 Meta Clone()
Returns
Type Description
Meta

A deep clone of this object.

Equals(Meta)

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

Declaration
public bool Equals(Meta other)
Parameters
Type Name Description
Meta other

An object to compare with this object.

Returns
Type Description
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
Type Name Description
object other
Returns
Type Description
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
Type Description
int

A hash code for the current object.

Overrides
object.GetHashCode()

MergeFrom(Meta)

Merges the given message into this one.

Declaration
public void MergeFrom(Meta other)
Parameters
Type Name Description
Meta other
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
Type Name Description
CodedInputStream input
Remarks

See the user guide for precise merge semantics.

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
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
Type Name Description
CodedOutputStream output

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
In this article