Ejemplo n.º 1
0
        public void ForAttribute <TAttribute>(Action <TAttribute> func) where TAttribute : Attribute
        {
            if (!HasAttribute <TAttribute>())
            {
                return;
            }

            func(AttributeProvider.GetAttribute <TAttribute>());
        }
Ejemplo n.º 2
0
        public TValue ForAttribute <TAttribute, TValue>(Func <TAttribute, TValue> callback, TValue defaultValue)
            where TAttribute : Attribute
        {
            if (!HasAttribute <TAttribute>())
            {
                return(defaultValue);
            }

            return(callback(AttributeProvider.GetAttribute <TAttribute>()));
        }
Ejemplo n.º 3
0
 public TAttribute GetAttribute <TAttribute>() where TAttribute : Attribute
 {
     return(AttributeProvider.GetAttribute <TAttribute>());
 }