confluent-kafka-dotnet
Show / Hide Table of Contents

Class DeleteAclsReport

Report for a delete ACLs operation with an Error and a list of AclBinding

Inheritance
System.Object
DeleteAclsReport
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 DeleteAclsReport

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>

Error

Operation error status, null if successful.

Declaration
public Error Error { get; set; }
Property Value
Type Description
Error

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(DeleteAclsReport, DeleteAclsReport)

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

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

The first DeleteAclsReport instance to compare.

DeleteAclsReport b

The second DeleteAclsReport instance to compare.

Returns
Type Description
System.Boolean

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

Inequality(DeleteAclsReport, DeleteAclsReport)

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

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

The first DeleteAclsReport instance to compare.

DeleteAclsReport b

The second DeleteAclsReport instance to compare.

Returns
Type Description
System.Boolean

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

In This Article