/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Middleware/IExceptionFilter.cs
20 строк
582 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; /// <summary> /// Filter exceptions for policies that act based on an exception /// </summary> public interface IExceptionFilter : IProbeSite { /// <summary> /// Returns true if the exception matches the filter and the policy should /// be applied to the exception. /// </summary> /// <param name="exception">The exception</param> /// <returns>True if the exception matches the filter, otherwise false.</returns> bool Match(Exception exception); } }