/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Transformation/TransformPropertyContext.cs
22 строки
714 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.Transformation { /// <summary> /// A transform property context, which includes the <see cref="TransformContext" />, as well as the current input property value, if present. /// </summary> /// <typeparam name="TProperty"></typeparam> /// <typeparam name="TMessage"></typeparam> public interface TransformPropertyContext<out TProperty, out TMessage> : TransformContext<TMessage> where TMessage : class { /// <summary> /// True if the value is present from the source /// </summary> bool HasValue { get; } /// <summary> /// The value /// </summary> TProperty Value { get; } } }