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
Type Name Description
long mostSignificantBits

Most significant 64 bits of the 128 bits UUID.

long leastSignificantBits

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
Type Description
Offset

MostSignificantBits

Most significant 64 bits of the 128 bits UUID.

Declaration
public Offset MostSignificantBits { get; }
Property Value
Type Description
Offset

Methods

ToString()

Returns a string representation of the Uuid object.

Declaration
public override string ToString()
Returns
Type Description
string

A string representation of the Uuid object.

Overrides
object.ToString()
In this article