Say I have a class, "FQN.AuthorizeAllOfMe", with a series of methods, say X(), Y(), and Z(). Then let's say I have the following advice already:
public class AuthorizationAdvice: IMethodBeforeAdvice
{
public void Before(MethodInfo method, object[] args, object target)
{
}
}
In an ASP.NET application, how do I configure spring.net in web.config to apply the advice to X(), Y(), and Z(). I would prefer to be able to apply it to all methods within AuthorizeAllOfMe, but I will accept individual applications of the advice to the three methods if that is not possible.
I am looking for the specific configuration needed given the class and method names above and using the "Before" advice, not a general description of how to apply aspects to methods.