/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Middleware/BindContext.cs
16 строк
497 B
Chris Patterson
Integration of all external packages into MassTransit, split out into Abstractions, Middleware, and the core MassTransit assembly.
22 янв 2022, 18:24
22 янв 2022, 18:24
b5b4f50
Код
Авторство
О чём код?
namespace MassTransit { /// <summary> /// The binding of a value to the context, which is a fancy form of Tuple /// </summary> /// <typeparam name="TLeft">The pipe context type</typeparam> /// <typeparam name="TRight">The source context type</typeparam> public interface BindContext<out TLeft, out TRight> : PipeContext where TLeft : class, PipeContext where TRight : class { TLeft Left { get; } TRight Right { get; } } }