confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListOffsetsReport

Represents the result of a ListOffsets request (including error status).

Inheritance
object
ListOffsetsReport
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 ListOffsetsReport

Properties

Error

Operation error status.

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

ResultInfos

Result information for all the partitions queried with ListOffsets. At least one of these results will be in error.

Declaration
public List<ListOffsetsResultInfo> ResultInfos { get; set; }
Property Value
Type Description
List<ListOffsetsResultInfo>

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