Table of Contents

Class BasicNackEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
Apigen.dll

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

public class BasicNackEventArgs : EventArgs
Inheritance
BasicNackEventArgs
Inherited Members

Properties

DeliveryTag

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

public ulong DeliveryTag { get; set; }

Property Value

ulong

Multiple

Whether this nack applies to one message or multiple messages.

public bool Multiple { get; set; }

Property Value

bool

Requeue

Ignore

public bool Requeue { get; set; }

Property Value

bool

Remarks

Clients should ignore this field.