confluent-kafka-dotnet
Show / Hide Table of Contents

Class Uuid

Represents a UUID

Inheritance
object
Uuid
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Confluent.Kafka
Assembly: Confluent.Kafka.dll
Syntax
public class Uuid

Constructors

Uuid(long, long)

Initializes a new instance of the Uuid class with the specified Most and Least significant bits.

Declaration
public Uuid(long mostSignificantBits, long leastSignificantBits)
Parameters
TypeNameDescription
longmostSignificantBits

Most significant 64 bits of the 128 bits UUID.

longleastSignificantBits

Least significant 64 bits of the 128 bits UUID.

Properties

LeastSignificantBits

Most significant 64 bits of the 128 bits UUID.

Declaration
public Offset LeastSignificantBits { get; }
Property Value
TypeDescription
Offset

MostSignificantBits

Most significant 64 bits of the 128 bits UUID.

Declaration
public Offset MostSignificantBits { get; }
Property Value
TypeDescription
Offset

Methods

ToString()

Returns a string representation of the Uuid object.

Declaration
public override string ToString()
Returns
TypeDescription
string

A string representation of the Uuid object.

Overrides
object.ToString()
In this article