MsmqMessage<T>.CorrelationId 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个 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。
示例
message.CorrelationId = "This message";
message.CorrelationId = "This message"
注解
消息队列 (MSMQ) 生成确认或报告消息时,它会使用此属性来指定原始消息的消息标识符。 发送原始消息的应用程序在接收确认或报告消息时,可从其接收的消息获取此属性,从而验证原始消息的消息标识符。
该应用程序还可以使用此属性来为自己关联这些消息。