Interface ISingleMessageArgumentResolver
These resolvers are used to handle the single message parameter (the pure message, not wrapped in any enumerable or collection).
Namespace: Silverback.Messaging.Subscribers.ArgumentResolvers
Assembly: Silverback.Core.dll
Syntax
public interface ISingleMessageArgumentResolver : IMessageArgumentResolver, IArgumentResolver
Methods
| Improve this doc View sourceGetValue(object)
Returns the message value in a shape that is compatible with the subscribed method.
Declaration
object GetValue(object message)
Parameters
| Type | Name | Description |
|---|---|---|
| object | message | The message being published. |
Returns
| Type | Description |
|---|---|
| object | The actual value to be forwarded to the subscribed method. |