Class Uuid
Represents a UUID
Inheritance
System.Object
Uuid
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Confluent.Kafka
Assembly: cs.temp.dll.dll
Syntax
public class Uuid
Constructors
Uuid(Int64, Int64)
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 |
---|---|---|
System.Int64 | mostSignificantBits | Most significant 64 bits of the 128 bits UUID. |
System.Int64 | 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 |
---|---|
System.String | A string representation of the Uuid object. |
Overrides
System.Object.ToString()