/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Internals/Reflection/IReadOnlyPropertyCache.cs
12 строк
311 B
Chris Patterson
Fixed #3344 - added internal code analysis types for NETSTANDARD2.0 and NET462 builds to allow proper nullable output types for analyzer
06 мар 2023, 21:47
06 мар 2023, 21:47
715a0a2
Код
Авторство
О чём код?
namespace MassTransit.Internals { using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; public interface IReadOnlyPropertyCache<T> : IEnumerable<ReadOnlyProperty<T>> { bool TryGetValue(string key, [NotNullWhen(true)] out ReadOnlyProperty<T>? value); } }