confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteConsumerGroupOffsetsResult

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

Inheritance
System.Object
DeleteConsumerGroupOffsetsResult
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 DeleteConsumerGroupOffsetsResult

Properties

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<TopicPartition> Partitions { get; set; }
Property Value
Type Description
System.Collections.Generic.List<TopicPartition>
In This Article