Class MessageHandlerArgs<TMessage>
Wraps a message with the ability to cancel execution.
public class MessageHandlerArgs<TMessage> : MessageHandlerArgs where TMessage : IMessageSinkMessage
Type Parameters
TMessageThe type of the message to be handled.
- Inheritance
-
MessageHandlerArgs<TMessage>
- Inherited Members
Constructors
MessageHandlerArgs(TMessage)
Wraps a message with the ability to cancel execution.
public MessageHandlerArgs(TMessage message)
Parameters
messageTMessageThe message to be handled.
Properties
Message
Gets the message.
public TMessage Message { get; }
Property Value
- TMessage