confluent-kafka-dotnet
Show / Hide Table of Contents

Class ConfigEntryResult

A config property entry, as reported by the Kafka admin api.

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

Properties

IsDefault

Whether or not the config value is the default or was explicitly set.

Declaration
public bool IsDefault { get; set; }
Property Value
Type Description
System.Boolean

IsReadOnly

Whether or not the config is read-only (cannot be updated).

Declaration
public bool IsReadOnly { get; set; }
Property Value
Type Description
System.Boolean

IsSensitive

Whether or not the config value is sensitive. The value for sensitive configuration values is always returned as null.

Declaration
public bool IsSensitive { get; set; }
Property Value
Type Description
System.Boolean

Name

The config name.

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

Source

The config source. Refer to ConfigSource for more information.

Declaration
public ConfigSource Source { get; set; }
Property Value
Type Description
ConfigSource

Synonyms

All config values that may be used as the value of this config along with their source, in the order of precedence.

Declaration
public List<ConfigSynonym> Synonyms { get; set; }
Property Value
Type Description
System.Collections.Generic.List<ConfigSynonym>

Value

The config value.

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String
In This Article