Message.DestinationQueue プロパティ
アセンブリ: System.Messaging (system.messaging.dll 内)

Public ReadOnly Property DestinationQueue As MessageQueue
public MessageQueue DestinationQueue { get; }
public: property MessageQueue^ DestinationQueue { MessageQueue^ get (); }
/** @property */ public MessageQueue get_DestinationQueue ()
メッセージの送信先キューを指定する MessageQueue。


DestinationQueue プロパティが最も一般的に使用されるのは、履歴キューまたは配信不能キューに到達したメッセージの元の送信先を判断するためです通常、メッセージはその送信先キューから取得するため、このプロパティを調べる必要はありません。

メッセージの DestinationQueue プロパティの値を表示するコード例を次に示します。
// Display the value of the message's DestinationQueue property. // To view this property value, the queue's // MessageReadPropertyFilter.DestinationQueue property must be set to // true before the message is received. Console.WriteLine("Message.DestinationQueue.QueueName: {0}", orderMessage.DestinationQueue.QueueName);
// Display the value of the message's DestinationQueue property. // To view this property value, the queue's // MessageReadPropertyFilter.DestinationQueue property must be set to // true before the message is received. Console::WriteLine("Message.DestinationQueue.QueueName: {0}", orderMessage->DestinationQueue->QueueName);
// Display the value of the message's DestinationQueue property. // To view this property value, the queue's // MessageReadPropertyFilter.DestinationQueue property must be set to // true before the message is received. Console.WriteLine("Message.DestinationQueue.QueueName: {0}", System.Convert.ToString(orderMessage.get_DestinationQueue(). get_QueueName()));


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からMessage.DestinationQueue プロパティを検索する場合は、下記のリンクをクリックしてください。

- Message.DestinationQueue プロパティのページへのリンク