MsmqMessage<T>.Extension Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.