/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Configuration/ISpecification.cs
21 строка
671 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 { using System.Collections.Generic; using System.ComponentModel; /// <summary> /// A specification, that can be validated as part of a configurator, is used /// to allow nesting and chaining of specifications while ensuring that all aspects /// of the configuration are verified correct. /// </summary> public interface ISpecification { /// <summary> /// Validate the specification, ensuring that a successful build will occur. /// </summary> /// <returns></returns> [EditorBrowsable(EditorBrowsableState.Never)] IEnumerable<ValidationResult> Validate(); } }