Interface InitializeContext<TMessage, TInput>
- Namespace
- MassTransit.Initializers
- Assembly
- MassTransit.Abstractions.dll
Message initialization context, which includes the message being initialized and the input being used to initialize the message properties.
public interface InitializeContext<out TMessage, out TInput> : InitializeContext<TMessage>, InitializeContext, PipeContext where TMessage : class where TInput : class
Type Parameters
TMessage
The message type
TInput
The input type
- Inherited Members
- Extension Methods
Properties
HasInput
If true, the input is present, otherwise it equals default.
bool HasInput { get; }
Property Value
Input
TInput Input { get; }
Property Value
- TInput