Table of Contents

Class BasicAckEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
RabbitMQ.Client.dll

Contains all the information about a message acknowledged from an AMQP broker within the Basic content-class.

public class BasicAckEventArgs : AsyncEventArgs
Inheritance
BasicAckEventArgs
Inherited Members

Constructors

BasicAckEventArgs(ulong, bool, CancellationToken)

public BasicAckEventArgs(ulong deliveryTag, bool multiple, CancellationToken cancellationToken = default)

Parameters

deliveryTag ulong
multiple bool
cancellationToken CancellationToken

Fields

DeliveryTag

The sequence number of the acknowledged message, or the closed upper bound of acknowledged messages if multiple is true.

public readonly ulong DeliveryTag

Field Value

ulong

Multiple

Whether this acknowledgement applies to one message or multiple messages.

public readonly bool Multiple

Field Value

bool