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.TransactionStatusQueue

Gets the transaction status queue on the source computer.

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

Property Value

The transaction status queue on the source computer, used for sending acknowledgement messages back to the sending application. The default is a null reference (Visual Basic Nothing).

Remarks

TransactionStatusQueue provides access to the TransactionStatusQueueInfo property of the Message Queuing application's MSMQMessage object.

Connector applications can use the MSMQMessage object to send positive (read receipt) or negative acknowledgment messages back to the sending application. The transaction status queue should receive these acknowledgments even if the sending application does not request other acknowledgments.

See Also

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