confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteConsumerGroupOffsetsReport

The result of delete consumer group offset request (including error status).

Inheritance
System.Object
DeleteConsumerGroupOffsetsReport
Inherited Members
System.Object.ToString()
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 DeleteConsumerGroupOffsetsReport

Properties

Error

Error status.

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

Group

Consumer group id.

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

Partitions

Partitions for which the offsets were reset for.

Declaration
public List<TopicPartitionOffsetError> Partitions { get; set; }
Property Value
Type Description
System.Collections.Generic.List<TopicPartitionOffsetError>
In This Article