confluent-kafka-dotnet
Show / Hide Table of Contents

Class ListConsumerGroupsReport

Represents the result of a list consumer group operation with an error.

Inheritance
System.Object
ListConsumerGroupsReport
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.Admin
Assembly: cs.temp.dll.dll
Syntax
public class ListConsumerGroupsReport

Properties

Errors

List of non-client level errors encountered while listing groups.

Declaration
public List<Error> Errors { get; set; }
Property Value
Type Description
System.Collections.Generic.List<Error>

Valid

List of valid consumer group listings.

Declaration
public List<ConsumerGroupListing> Valid { get; set; }
Property Value
Type Description
System.Collections.Generic.List<ConsumerGroupListing>

Methods

ToString()

Returns a human readable representation of this object.

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
In This Article