Class DeleteAclsException
Represents an error that occurred during a delete ACLs request.
Implements
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DeleteAclsException : KafkaException, ISerializable
Constructors
DeleteAclsException(List<DeleteAclsReport>)
Initialize a new instance of DeleteAclsException.
Declaration
public DeleteAclsException(List<DeleteAclsReport> results)
Parameters
Type | Name | Description |
---|---|---|
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 |
---|---|
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 |
---|---|---|
object | obj | The object to test. |
Returns
Type | Description |
---|---|
bool | true if this is of the same type as obj and the Error and Results 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 ==(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 |
---|---|
bool | true if DeleteAclsException instances a and b are equal. false otherwise. |
operator !=(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 |
---|---|
bool | true if DeleteAclsException instances a and b are not equal. false otherwise. |