Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/2538cac5544caadea197b75dabf01165 to your computer and use it in GitHub Desktop.
Save hbulens/2538cac5544caadea197b75dabf01165 to your computer and use it in GitHub Desktop.
using NServiceBus.Config;
using NServiceBus.Config.ConfigurationSource;
public class OrderMessage : IEvent
{
public Guid Id { get; set; }
public string Description { get; set; }
}
class ConfigErrorQueue : IProvideConfiguration<MessageForwardingInCaseOfFaultConfig>
{
public MessageForwardingInCaseOfFaultConfig GetConfiguration()
{
return new MessageForwardingInCaseOfFaultConfig { ErrorQueue = "error" };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment