Class BasicNackEventArgs
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
Multiple
Whether this nack applies to one message or multiple messages.
public bool Multiple { get; set; }
Property Value
Requeue
Ignore
public bool Requeue { get; set; }
Property Value
Remarks
Clients should ignore this field.