Interface IEnvelope
Wraps a message when it's being transferred over a message broker.
Namespace: Silverback.Messaging.Messages
Assembly: Silverback.Core.dll
Syntax
public interface IEnvelope
Properties
| Improve this doc View sourceAutoUnwrap
Gets a value indicating whether this envelope can be automatically unwrapped and the contained message can be forwarded to the matching subscribers in its pure form.
Declaration
bool AutoUnwrap { get; }
Property Value
Type | Description |
---|---|
bool |
Remarks
This is internally used to avoid mortal loops.
Message
Gets or sets the message body.
Declaration
object? Message { get; set; }
Property Value
Type | Description |
---|---|
object |