Table of Contents

Class BasicReturnEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
Apigen.dll

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

public class BasicReturnEventArgs : EventArgs
Inheritance
BasicReturnEventArgs
Inherited Members

Properties

BasicProperties

The content header of the message.

public IBasicProperties BasicProperties { get; set; }

Property Value

IBasicProperties

Body

The message body.

public ReadOnlyMemory<byte> Body { get; set; }

Property Value

ReadOnlyMemory<byte>

Exchange

The exchange the returned message was originally published to.

public string Exchange { get; set; }

Property Value

string

ReplyCode

The AMQP reason code for the return. See RabbitMQ.Client.Framing.*.Constants.

public ushort ReplyCode { get; set; }

Property Value

ushort

ReplyText

Human-readable text from the broker describing the reason for the return.

public string ReplyText { get; set; }

Property Value

string

RoutingKey

The routing key used when the message was originally published.

public string RoutingKey { get; set; }

Property Value

string