/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Internals/Reflection/IReadPropertyCache.cs
15 строк
487 B
Chris Patterson
Fixed #4697 - CorrelationId property from base classes and interfaces will be used if present.
11 окт 2023, 00:22
11 окт 2023, 00:22
349c5e1
Код
Авторство
О чём код?
#nullable enable namespace MassTransit.Internals { using System.Diagnostics.CodeAnalysis; using System.Reflection; public interface IReadPropertyCache<T> where T : class { IReadProperty<T, TProperty> GetProperty<TProperty>(string? name); IReadProperty<T, TProperty> GetProperty<TProperty>(PropertyInfo? propertyInfo); bool TryGetProperty<TProperty>(string name, [NotNullWhen(true)] out IReadProperty<T, TProperty>? property); } }