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 : EventArgs
Inheritance
BasicAckEventArgs
Inherited Members

Constructors

BasicAckEventArgs()

public BasicAckEventArgs()

Properties

DeliveryTag

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

public ulong DeliveryTag { get; set; }

Property Value

ulong

Multiple

Whether this acknoledgement applies to one message or multiple messages.

public bool Multiple { get; set; }

Property Value

bool