confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteRecordsReport

The per-partition result of delete records request (including error status).

Inheritance
object
DeleteRecordsReport
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DeleteRecordsReport

Properties

Error

Per-partition error status.

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

Offset

Post-deletion low-watermark (smallest available offset of all live replicas).

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

Partition

The partition.

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

Topic

The topic name.

Declaration
public string Topic { get; set; }
Property Value
Type Description
string
In this article