MsmqMessage<T>.Extension プロパティ

定義

このメッセージに関連付けられているアプリケーション定義の追加情報を格納している Byte の配列を取得または設定します。

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()

プロパティ値

Byte[]

このメッセージに関連付けられているアプリケーション定義の追加情報を格納している Byte 配列。

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

注釈

このプロパティを使用して、ラージ バイナリ オブジェクトなどの追加情報を格納します。

適用対象