MessagePropertyFilter.Extension プロパティ

定義

メッセージを受信またはピークするときに Extension プロパティ情報を取得するかどうかを示す値を取得または設定します。

public:
 property bool Extension { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgExtension")]
public bool Extension { get; set; }
[<System.Messaging.MessagingDescription("MsgExtension")>]
member this.Extension : bool with get, set
Public Property Extension As Boolean

プロパティ値

Extension 情報を受信する場合は true。それ以外の場合は false。 既定値は、false です。

属性

次のコード例では、 プロパティの使用方法を Extension 示します。

// Set the queue's MessageReadPropertyFilter property 
// to enable the message's Extension property.
queue->MessageReadPropertyFilter->Extension = true;

// Peek at the message. Time out after ten seconds 
// in case the message was not delivered.
orderMessage = queue->Peek(TimeSpan::FromSeconds(10.0));

// Display the value of the message's Extension property.
Console::WriteLine("Message.Extension: {0}", 
    orderMessage->Extension);
// Set the queue's MessageReadPropertyFilter property to enable the
// message's Extension property.
queue.MessageReadPropertyFilter.Extension = true;

// Peek at the message. Time out after ten seconds in case the message
// was not delivered.
orderMessage = queue.Peek(TimeSpan.FromSeconds(10.0));

// Display the value of the message's Extension property.
Console.WriteLine("Message.Extension: {0}",
    orderMessage.Extension);

注釈

クラスの Message プロパティはExtension、大きなバイナリ オブジェクトなど、メッセージに関連付けられている追加のアプリケーション定義情報を提供します。 の内容を解釈するのは、受信側のアプリケーションの Extension責任です。

適用対象

こちらもご覧ください