Class AdminClientConfig
AdminClient configuration properties
Implements
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.String>>
System.Collections.IEnumerable
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
Assembly: cs.temp.dll.dll
Syntax
public class AdminClientConfig : ClientConfig, IEnumerable<KeyValuePair<string, string>>, IEnumerable
Constructors
AdminClientConfig()
Initialize a new empty AdminClientConfig instance.
Declaration
public AdminClientConfig()
AdminClientConfig(ClientConfig)
Initialize a new AdminClientConfig instance wrapping an existing ClientConfig instance. This will change the values "in-place" i.e. operations on this class WILL modify the provided collection
Declaration
public AdminClientConfig(ClientConfig config)
Parameters
Type | Name | Description |
---|---|---|
ClientConfig | config |
AdminClientConfig(IDictionary<String, String>)
Initialize a new AdminClientConfig instance wrapping an existing key/value pair collection. This will change the values "in-place" i.e. operations on this class WILL modify the provided collection
Declaration
public AdminClientConfig(IDictionary<string, string> config)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | config |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable