confluent-kafka-dotnet
Show / Hide Table of Contents

Class CreateAclReport

Provides create ACL error information.

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

Properties

Error

Per ACL binding error status.

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

Methods

Equals(Object)

Tests whether this CreateAclReport 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 obj is a CreateAclReport and the Error property values are equal. false otherwise.

Overrides
System.Object.Equals(System.Object)

GetHashCode()

Returns a hash code for this CreateAclReport value.

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32

An integer that specifies a hash value for this CreateAclReport value.

Overrides
System.Object.GetHashCode()

Operators

Equality(CreateAclReport, CreateAclReport)

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

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

The first CreateAclReport instance to compare.

CreateAclReport b

The second CreateAclReport instance to compare.

Returns
Type Description
System.Boolean

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

Inequality(CreateAclReport, CreateAclReport)

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

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

The first CreateAclReport instance to compare.

CreateAclReport b

The second CreateAclReport instance to compare.

Returns
Type Description
System.Boolean

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

In This Article