MsmqMessage<T>.CorrelationId 属性

定义

获取或设置一个 String,它包含此消息的相关标识符。

public:
 property System::String ^ CorrelationId { System::String ^ get(); void set(System::String ^ value); };
public string CorrelationId { get; set; }
member this.CorrelationId : string with get, set
Public Property CorrelationId As String

属性值

String

一个包含此消息的相关标识符的 String

示例

message.CorrelationId = "This message";
message.CorrelationId = "This message"

注解

消息队列 (MSMQ) 生成确认或报告消息时,它会使用此属性来指定原始消息的消息标识符。 发送原始消息的应用程序在接收确认或报告消息时,可从其接收的消息获取此属性,从而验证原始消息的消息标识符。

该应用程序还可以使用此属性来为自己关联这些消息。

适用于