在 NServiceBus 中接收消息时列表值丢失
我的消息对象有一个列表和一些属性。说“列出我的列表”。我将此消息发送到队列。 NSBHandler 接收此消息。但收到的消息中缺少 MyList。所有其他属性都存在。
谁能帮我解决这个问题?
提前致谢。
雷金·坦加拉吉
My message object has a list and some properties. Say List MyList. I send this message to a queue. NSBHandler receives this message. But MyList is missing in that received message. All other properties exist.
Can anyone help me to resolve this issue?
Thanks in advance.
Regin Thangaraj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用了自动属性并且这样做了:
那么 NServiceBus 将在序列化时跳过它,因为它知道在反序列化时它将无法使用私有设置器设置该属性。
If you've used an auto property and you've done it like this:
Then NServiceBus will skip it on serialization as it knows that on deserilization it will won't be able to set the property with the private setter..