According to the documentation I suggested, “DontRequireReceiver” should suppress exceptions. But as far as I can see in my logs, there are exceptions thrown.
What could be the reason?
I’m sending out several types of messages. The message itself implements an interface IChangeMessage. The interface itself is derived to e.g. IChangeHeaderMessage.
Eventually inside the script X I have following method:
public void Change(IHeaderChangeMessage message)
{
}
There I receive that message, and is executed as expected.