confluent-kafka-dotnet
Show / Hide Table of Contents

Class DescribeAclsException

Represents an error that occurred during a describe ACLs request.

Inheritance
System.Object
System.Exception
KafkaException
DescribeAclsException
Implements
System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
Inherited Members
KafkaException.Error
System.Exception.GetBaseException()
System.Exception.ToString()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.Message
System.Exception.Data
System.Exception.InnerException
System.Exception.TargetSite
System.Exception.StackTrace
System.Exception.HelpLink
System.Exception.Source
System.Exception.HResult
System.Exception.SerializeObjectState
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.MemberwiseClone()
Namespace: Confluent.Kafka.Admin
Assembly: cs.temp.dll.dll
Syntax
public class DescribeAclsException : KafkaException, ISerializable, _Exception

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
System.Object obj

The object to test.

Returns
Type Description
System.Boolean

true if this is of the same type as obj and the Error and Result property values are equal. false otherwise.

Overrides
System.Object.Equals(System.Object)

GetHashCode()

Returns a hash code for this value.

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32

An integer that specifies a hash value for this value.

Overrides
System.Object.GetHashCode()

Operators

Equality(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
System.Boolean

true if DescribeAclsException instances a and b are equal. false otherwise.

Inequality(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
System.Boolean

true if DescribeAclsException instances a and b are not equal. false otherwise.

Implements

System.Runtime.Serialization.ISerializable
System.Runtime.InteropServices._Exception
In This Article