/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Internals/Reflection/IReadWritePropertyCache.cs
14 строк
476 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 IReadWritePropertyCache<T> : IEnumerable<ReadWriteProperty<T>> { ReadWriteProperty<T> this[string name] { get; } bool TryGetValue(string key, [NotNullWhen(true)] out ReadWriteProperty<T>? value); bool TryGetProperty(string propertyName, [NotNullWhen(true)] out ReadWriteProperty<T>? property); } }