confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteAclsResult

Result for a delete ACLs operation with a list of AclBinding

Inheritance
object
DeleteAclsResult
Inherited Members
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class DeleteAclsResult

Properties

AclBindings

List of ACL bindings in this result

Declaration
public List<AclBinding> AclBindings { get; set; }
Property Value
TypeDescription
List<AclBinding>

Methods

Equals(object)

Tests whether this instance is equal to the specified object.

Declaration
public override bool Equals(object obj)
Parameters
TypeNameDescription
objectobj

The object to test.

Returns
TypeDescription
bool

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

Overrides
object.Equals(object)

GetHashCode()

Returns a hash code for this value.

Declaration
public override int GetHashCode()
Returns
TypeDescription
int

An integer that specifies a hash value for this value.

Overrides
object.GetHashCode()

Operators

operator ==(DeleteAclsResult, DeleteAclsResult)

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

Declaration
public static bool operator ==(DeleteAclsResult a, DeleteAclsResult b)
Parameters
TypeNameDescription
DeleteAclsResulta

The first DeleteAclsResult instance to compare.

DeleteAclsResultb

The second DeleteAclsResult instance to compare.

Returns
TypeDescription
bool

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

operator !=(DeleteAclsResult, DeleteAclsResult)

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

Declaration
public static bool operator !=(DeleteAclsResult a, DeleteAclsResult b)
Parameters
TypeNameDescription
DeleteAclsResulta

The first DeleteAclsResult instance to compare.

DeleteAclsResultb

The second DeleteAclsResult instance to compare.

Returns
TypeDescription
bool

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

In this article