Message::Extension Property
Gets or sets additional, application-defined information associated with the message.
Assembly: System.Messaging (in System.Messaging.dll)
public: [MessagingDescriptionAttribute("MsgExtension")] property array<unsigned char>^ Extension { array<unsigned char>^ get(); void set(array<unsigned char>^ value); }
Property Value
Type: array<System::Byte>^An array of byte values that provides application-defined information associated with the message. The default is a zero-length array.
| Exception | Condition |
|---|---|
| InvalidOperationException | The message queue is filtered to ignore the Extension property. |
| ArgumentException | The Extension property is null. |
The Extension property provides for application-defined information, like a large binary object, that is associated with the message. It is the responsibility of the receiving application to interpret the contents of the Extension property.
Where possible, you should include message data in the Body property of the message rather than the Extension property.
When working with foreign queues, use the Extension property to specify message properties that do not exist in Message Queuing.
A foreign queue exists in a queuing system other than Microsoft Message Queuing. Message Queuing communicates with such queues through a connector application.
Available since 1.1