confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteAclsException

Represents an error that occurred during a delete ACLs request.

Inheritance
System.Object
System.Exception
KafkaException
DeleteAclsException
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 DeleteAclsException : KafkaException, ISerializable, _Exception

Constructors

DeleteAclsException(List<DeleteAclsReport>)

Initialize a new instance of DeleteAclsException.

Declaration
public DeleteAclsException(List<DeleteAclsReport> results)
Parameters
Type Name Description
System.Collections.Generic.List<DeleteAclsReport> results

The results corresponding to all the ACL filters in the request (whether or not they were in error). At least one of these results will be in error.

Properties

Results

The result corresponding to all the delete ACLs operations in the request (whether or not they were in error). At least one of these results will be in error.

Declaration
public List<DeleteAclsReport> Results { get; }
Property Value
Type Description
System.Collections.Generic.List<DeleteAclsReport>

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 Results 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(DeleteAclsException, DeleteAclsException)

Tests whether DeleteAclsException instance a is equal to DeleteAclsException instance b.

Declaration
public static bool operator ==(DeleteAclsException a, DeleteAclsException b)
Parameters
Type Name Description
DeleteAclsException a

The first DeleteAclsException instance to compare.

DeleteAclsException b

The second DeleteAclsException instance to compare.

Returns
Type Description
System.Boolean

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

Inequality(DeleteAclsException, DeleteAclsException)

Tests whether DeleteAclsException instance a is not equal to DeleteAclsException instance b.

Declaration
public static bool operator !=(DeleteAclsException a, DeleteAclsException b)
Parameters
Type Name Description
DeleteAclsException a

The first DeleteAclsException instance to compare.

DeleteAclsException b

The second DeleteAclsException instance to compare.

Returns
Type Description
System.Boolean

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

Implements

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