MsmqMessage<T>.ResponseQueue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Uri of the message queue that receives response messages from the receiving application.
public:
property Uri ^ ResponseQueue { Uri ^ get(); void set(Uri ^ value); };
public Uri ResponseQueue { get; set; }
member this.ResponseQueue : Uri with get, set
Public Property ResponseQueue As Uri
Property Value
This property defaults to null
.
This property identifies the queue that receives response messages that the receiving application returns to the sending application. The sending application specifies the response queue when it sends messages to the receiving application. The sending application can specify any available queue as the response queue.
Examples
message.ResponseQueue = new Uri(".\\private$\\MyResponseQueue");
message.ResponseQueue = New Uri(".\private$\MyResponseQueue")