I'm working on a new system architecture for my current job, and think there is a lot of potential is making some custom attributes for the other developers to use. However, something I've yet to see in reading about custom attributes, is if there is a way to tell what the attribute is being called for. In other words, get the instance of the decorated class that the attribute is attached to.
So lets say I want to make an attribute that would just log entry to a method: Without attributes:
class MyClass { public string MyVal { get; set; } public void MyMethod() { if(logger.IsDebugEnabled()) logger.Write("Entered MyClass.MyMethod(). MyVal is " + MyVal); // ... do rest of method ... } }
Obviously dropping this onto every method isn't a good plan. It doesnt relate tot he real logic at all. Just extra fluff for debugging. Great place for an attribute, right!
[LogMethodEntry] public void MyMethod() { // ... do rest of method ... } public class LogMethodEntryAttribute : System.Attribute { public LogMethodEntryAttribute() { if(logger.IsDebugEnabled()) logger.Write("Entered ?. MyVal is ?"); // hmmm, what method was called that triggered this? // can probably get it from the call stack, but... // what is the value of MyVal? } }
By the way, this isn't actually what I want to use the attributes for, its just a simple example.
It would be nice if attributes had a way of getting the decorated instance, maybe like extension methods do it:
public class LogMethodEntryAttribute : System.Attribute { public LogMethodEntryAttribute(this object target) { logger.write((MyClass)target.MyVal);
But I don't think anything like that exists. I am currently downloadng the source to PostShart to see if/how they get around this, but I figured I might get a faster answer here.
Plus, doesn't it seem like that should be possible? Wouldnt it make Attributes MUCH MUCH more beneficial? I know it would for me right now!
Closing this question. When I originally asked this, I was under the impression that the Attribute constructor was called every time the decorated method was called. I have since come to realize that this is not how attributes work. Getting the instance that the Attribute is running against no longer makes sence, because it isn't really run against anything.
