Each message dispatched from an Endpoint has a unique identity. NServiceBus generates and stores this value in the NServiceBus.
header.
Many features take advantage of message identity. For example, the Outbox uses message identity to deduplicate messages and recoverability uses message identity to keep track of how many times the endpoint has tried to process a message.
Message identities are not guaranteed to be unique across endpoints from a processing perspective. For example, the message identity of a published event will always be the same for all subscribers. In cases where a globally unique identity for processed messages is required, the name of the processing logical endpoint should be combined with the message identity.
Specifying message identity
Message identity can be explicitly specified, overriding the default identity provided by NServiceBus.
It is important that the strategy used to generate message identities results in globally unique identifiers. If two messages ever have the same identity then some features will treat them as the same message. This will cause errors which are difficult to diagnose.
Specify message identity using the SendOptions
class.
var options = new SendOptions();
options.SetMessageId(messageId);
await handlerContext.Send(new SomeMessage(), options);