confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteAclsResult

Result for a delete ACLs operation with a list of AclBinding

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

Properties

AclBindings

List of ACL bindings in this result

Declaration
public List<AclBinding> AclBindings { get; set; }
Property Value
Type Description
System.Collections.Generic.List<AclBinding>

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 AclBindings 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(DeleteAclsResult, DeleteAclsResult)

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

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

The first DeleteAclsResult instance to compare.

DeleteAclsResult b

The second DeleteAclsResult instance to compare.

Returns
Type Description
System.Boolean

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

Inequality(DeleteAclsResult, DeleteAclsResult)

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

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

The first DeleteAclsResult instance to compare.

DeleteAclsResult b

The second DeleteAclsResult instance to compare.

Returns
Type Description
System.Boolean

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

In This Article