confluent-kafka-dotnet
Show / Hide Table of Contents

Class GroupMemberInfo

Encapsulates information describing a particular member of a Kafka group.

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

Constructors

GroupMemberInfo(String, String, String, Byte[], Byte[])

Initializes a new GroupMemberInfo class instance.

Declaration
public GroupMemberInfo(string memberId, string clientId, string clientHost, byte[] memberMetadata, byte[] memberAssignment)
Parameters
Type Name Description
System.String memberId

The member id (generated by the broker).

System.String clientId

The client's client.id.

System.String clientHost

The client's hostname.

System.Byte[] memberMetadata

Gets the member metadata (binary). The format of this data depends on the protocol type.

System.Byte[] memberAssignment

Gets the member assignment (binary). The format of this data depends on the protocol type.

Properties

ClientHost

Gets the client's hostname.

Declaration
public string ClientHost { get; }
Property Value
Type Description
System.String

ClientId

Gets the client's client.id.

Declaration
public string ClientId { get; }
Property Value
Type Description
System.String

MemberAssignment

Gets the member assignment (binary). The format of this data depends on the protocol type.

Declaration
public byte[] MemberAssignment { get; }
Property Value
Type Description
System.Byte[]

MemberId

Gets the member id (generated by broker).

Declaration
public string MemberId { get; }
Property Value
Type Description
System.String

MemberMetadata

Gets the member metadata (binary). The format of this data depends on the protocol type.

Declaration
public byte[] MemberMetadata { get; }
Property Value
Type Description
System.Byte[]
In This Article