Class TopicDescription
Represents a single topic's description in the result of a describe topic operation.
Inheritance
System.Object
TopicDescription
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 TopicDescription
Properties
AuthorizedOperations
AclOperation list (null if not requested or not supported).
Declaration
public List<AclOperation> AuthorizedOperations { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<AclOperation> |
Error
Error, if any, of topic reported by the broker
Declaration
public Error Error { get; set; }
Property Value
Type | Description |
---|---|
Error |
IsInternal
Whether the topic is internal to Kafka. An example of an internal topic is the offsets and group management topic: __consumer_offsets.
Declaration
public bool IsInternal { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
The topic name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Partitions
List of partitions and their information.
Declaration
public List<TopicPartitionInfo> Partitions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TopicPartitionInfo> |
TopicId
The topic Id.
Declaration
public Uuid TopicId { get; set; }
Property Value
Type | Description |
---|---|
Uuid |
Methods
ToString()
Returns a JSON representation of this object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A JSON representation of this object. |
Overrides
System.Object.ToString()