confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListOffsetsResultInfo

Represents the result of a list offset request for a single topic partition.

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

Properties

Timestamp

Timestamp corresponding to the offset, -1 if not set by the broker.

Declaration
public long Timestamp { get; set; }
Property Value
Type Description
long

TopicPartitionOffsetError

TopicPartitionOffsetError corresponding to the requested TopicPartition.

Declaration
public TopicPartitionOffsetError TopicPartitionOffsetError { get; set; }
Property Value
Type Description
TopicPartitionOffsetError

Methods

ToString()

Returns a JSON representation of the object.

Declaration
public override string ToString()
Returns
Type Description
string

A JSON representation of the object.

Overrides
object.ToString()
In this article