Interface BindContext<TLeft, TRight>
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
The binding of a value to the context, which is a fancy form of Tuple
public interface BindContext<out TLeft, out TRight> : PipeContext where TLeft : class, PipeContext where TRight : class
Type Parameters
TLeft
The pipe context type
TRight
The source context type
- Inherited Members
- Extension Methods
Properties
Left
TLeft Left { get; }
Property Value
- TLeft
Right
TRight Right { get; }
Property Value
- TRight