confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListConsumerGroupOffsetsResult

The per-group result for a list consumer group offsets request.

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

Properties

Group

The groupID.

Declaration
public string Group { get; set; }
Property Value
Type Description
string

Partitions

List of topic TopicPartitionOffsetError containing the read offsets, and errors if any.

Declaration
public List<TopicPartitionOffsetError> Partitions { get; set; }
Property Value
Type Description
List<TopicPartitionOffsetError>

Methods

ToString()

Returns a human readable representation of this object.

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()
In this article