confluent-kafka-dotnet
Show / Hide Table of Contents

Class DescribeAclsException

Represents an error that occurred during a describe ACLs request.

Inheritance
object
Exception
KafkaException
DescribeAclsException
Implements
ISerializable
Inherited Members
KafkaException.Error
Exception.GetBaseException()
Exception.GetObjectData(SerializationInfo, StreamingContext)
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
object.Equals(object, object)
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
object.Equals(object)

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
object.GetHashCode()

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.

Implements

ISerializable
In this article