MsmqMessage<T>.Extension Property

Definition

Gets or sets an array of Byte that contains any additional, application-defined information that is associated with this message.

public:
 property cli::array <System::Byte> ^ Extension { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[] Extension { get; set; }
member this.Extension : byte[] with get, set
Public Property Extension As Byte()

Property Value

Byte[]

An array of Byte that contains any additional, application-defined information that is associated with this message.

Examples

byte[] buffer = {0x10, 0x11, 0x12, 0x14};
message.Extension = buffer;
Dim buffer() As Byte = {&H10, &H11, &H12, &H14}
message.Extension = buffer

Remarks

Use this property to store additional information, such as a large binary object.

Applies to