vote up 3 vote down star
1

Possible Duplicate:
Why does my .NET Attribute not perform an action?

Hi,

This may soundlike a very dumb question and I don't know what is possible here as all the "custom attribute" tutorials on the net are pretty much the same and they don't address what I want to do. I've seen some code out there where code is written inside attribute classes, eg: Logging with ASP.NET MVC Action Filters and I am wondering how this code is ever executed.

If I have for example the following code:

public class Test
{
    [RestrictedAttribute("RegisteredMember")]
    public void DoSomething()
    {
        //this code can only be executed if the logged-in user
        //is a member of the RegisteredMember group
    }
}

Then the custom Attribute RestrictedAttribute would be something like this:

[AttributeUsage(AttributeTargets.Method)]
public class RestrictedAttribute : System.Attribute 
{
    /// <summary>
    /// Make this code restricted to users with a required role
    /// </summary>
    /// <param name="requiredRole">The role required to execute this method</param>
    public RestrictedAttribute(string requiredRole)
    {
        //validate if member is in role, else throw exception
        throw new MemberNotInRoleException(requiredRole);
    }
    public new string ToString() {
        return "Access needs to be granted";
    }

}

Now the problem is that I can't get the MemberNotInRoleException to be thrown when I execute the Test.DoSomething() method.

Perhaps I am just missing the entire concept of custom attributes, feel free to explain.

flag

Dupe: stackoverflow.com/questions/1164978/… – Mehrdad Afshari Jul 24 at 9:04
1  
You need to inherit your attribute from ActionFilterAttribute and override the OnActionExecuting method to get it to do something in MVC. – Mark Dickinson Jul 24 at 9:21
1  
I don't think this is an exact dupe, as it is the MCV behaviour which is clouding the issue, Mehrdad's reference addresses attributes directly and is a good call, but there's a nuance here that may help MVC folks trying to address cross cutting concerns in their solutions, such as validation, and JSON/XML serialization. – Mark Dickinson Jul 24 at 10:03
@Mark D. All in all I realise now how this is being done, thanks to the dupe question and your comments here and there. – Peter Jul 24 at 10:29

closed as exact duplicate by Mehrdad Afshari, Jon Skeet, Marc Gravell Jul 24 at 9:16

1 Answer

vote up 1 vote down check

The way you are looking at attributes sounds right at first, but think again. What you are really doing is decorating your class or whatever so that something that works with it can make a decision, not so that the class itself can make a decision. This was clouded for me by the way you can use actionfilter attributes in MVC, which look like they do something, but it is the framework which picks out events and uses the attribute accordingly. I usually try to think of attributes as comments for my program to work with.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.