/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/Functions/SafeFunctionAttribute.cs
8 строк
350 B
Ivan Kozhin
Introduce safe functions concept
25 янв 2024, 09:56
25 янв 2024, 09:56
d7659d7
Код
Авторство
О чём код?
namespace QueryCat.Backend.Core.Functions; /// <summary> /// Safe function is the function with no side effects. It means that it only reads a data /// and does not effect system state (does not write anything). /// </summary> [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)] public sealed class SafeFunctionAttribute : Attribute;