0

我已经按照这封信的 NServiceBus 入门指南进行了操作,唯一的更改是将属性添加到我的消息类中。

当我尝试运行它时,我得到:

Type [my type] was not registered in the serializer. 
Check that it appears in the list of configured assemblies/types to scan.

我遵循了http://docs.particular.net/nservicebus/serialization/type-was-not-registered上的指导,但这根本没有帮助。清除文件夹后,进行清理和重建后,我仍然遇到同样的问题,当生成的 INServiceBusComponent 类调用 Bus.Send 时会触发异常。

有人对我可以在这里尝试的事情有任何想法吗?

4

1 回答 1

2

dtryon 提供的答案 - 添加 IMessage 解决了这个问题。

[Serializable]
public class MyMessage : IMessage
{
}
于 2012-06-29T14:01:51.723 回答