Class ListOffsetsReport
Represents the result of a ListOffsets request (including error status).
Inheritance
System.Object
ListOffsetsReport
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 ListOffsetsReport
Properties
Error
Operation error status.
Declaration
public Error Error { get; set; }
Property Value
Type | Description |
---|---|
Error |
ResultInfos
Result information for all the partitions queried with ListOffsets. At least one of these results will be in error.
Declaration
public List<ListOffsetsResultInfo> ResultInfos { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ListOffsetsResultInfo> |
Methods
ToString()
Returns a JSON representation of the object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A JSON representation of the object. |
Overrides
System.Object.ToString()