Class DescribeAclsException
Represents an error that occurred during a describe ACLs request.
Implements
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DescribeAclsException : KafkaException, ISerializable
Constructors
DescribeAclsException(DescribeAclsReport)
Initialize a new instance of DescribeAclsException.
Declaration
public DescribeAclsException(DescribeAclsReport result)
Parameters
Type | Name | Description |
---|---|---|
DescribeAclsReport | result | The result corresponding to the ACL filter in the request |
Properties
Result
The result corresponding to the describe ACLs operation in the request
Declaration
public DescribeAclsReport Result { get; }
Property Value
Type | Description |
---|---|
DescribeAclsReport |
Methods
Equals(object)
Tests whether this instance is equal to the specified object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to test. |
Returns
Type | Description |
---|---|
bool | true if this is of the same type as obj and the Error and Result property values are equal. false otherwise. |
Overrides
GetHashCode()
Returns a hash code for this value.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | An integer that specifies a hash value for this value. |
Overrides
Operators
operator ==(DescribeAclsException, DescribeAclsException)
Tests whether DescribeAclsException instance a is equal to DescribeAclsException instance b.
Declaration
public static bool operator ==(DescribeAclsException a, DescribeAclsException b)
Parameters
Type | Name | Description |
---|---|---|
DescribeAclsException | a | The first DescribeAclsException instance to compare. |
DescribeAclsException | b | The second DescribeAclsException instance to compare. |
Returns
Type | Description |
---|---|
bool | true if DescribeAclsException instances a and b are equal. false otherwise. |
operator !=(DescribeAclsException, DescribeAclsException)
Tests whether DescribeAclsException instance a is not equal to DescribeAclsException instance b.
Declaration
public static bool operator !=(DescribeAclsException a, DescribeAclsException b)
Parameters
Type | Name | Description |
---|---|---|
DescribeAclsException | a | The first DescribeAclsException instance to compare. |
DescribeAclsException | b | The second DescribeAclsException instance to compare. |
Returns
Type | Description |
---|---|
bool | true if DescribeAclsException instances a and b are not equal. false otherwise. |