NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DefaultPropertiesToSend.ResponseQueue

Gets or sets the queue which receives application-generated response messages.

[Visual Basic]
Public Property ResponseQueue As MessageQueue
[C#]
public MessageQueue ResponseQueue {get; set;}
[C++]
public: __property MessageQueue* get_ResponseQueue();
public: __property void set_ResponseQueue(MessageQueue*);
[JScript]
public function get ResponseQueue() : MessageQueue;
public function set ResponseQueue(MessageQueue);

Property Value

The MessageQueue to which application-generated response messages are returned. The default is a null reference (Visual Basic Nothing).

Remarks

ResponseQueue provides access to the ResponseQueueInfo property of the Message Queuing application's MSMQMessage object.

Messages returned to the response queue are application-defined. The application must define what is in the messages as well as what is to be done when a message is received.

See Also

DefaultPropertiesToSend Class | DefaultPropertiesToSend Members | System.Messaging Namespace | TBD