/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Configuration/ValidationResult.cs
30 строк
896 B
Chris Patterson
Adding nullability to abstractions, and fixing warnings
15 фев 2022, 17:36
15 фев 2022, 17:36
8a72e94
Код
Авторство
О чём код?
namespace MassTransit { /// <summary> /// Reports information about the configuration before configuring /// so that corrections can be made without allocating resources, etc. /// </summary> public interface ValidationResult { /// <summary> /// The disposition of the result, any Failure items will prevent /// the configuration from completing. /// </summary> ValidationResultDisposition Disposition { get; } /// <summary> /// The message associated with the result /// </summary> string Message { get; } /// <summary> /// The key associated with the result (chained if configurators are nested) /// </summary> string Key { get; } /// <summary> /// The value associated with the result /// </summary> string? Value { get; } } }