confluent-kafka-dotnet
Show / Hide Table of Contents

Class ConsumerGroupListing

Represents a single consumer group in the result of a list consumer groups operation.

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

Properties

GroupId

The groupID.

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

IsSimpleConsumerGroup

Whether the consumer group is simple or not.

Declaration
public bool IsSimpleConsumerGroup { get; set; }
Property Value
Type Description
bool

State

The state of the consumer group.

Declaration
public ConsumerGroupState State { get; set; }
Property Value
Type Description
ConsumerGroupState

Type

The type of the consumer group.

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

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