vote up 2 vote down star

Trying to find some verbose reference on the intricacies of Attributes. Any help would be appreciated.

At this point, I'd specifically like to know what time during runtime does an attribute constructor get ran?

  • If it's over a class
  • If it's over a property
  • If it's over a method

Thanks.

flag

3 Answers

vote up 3 vote down check

The constructor is invoked when you call GetCustomAttributes() on the type or MemberInfo.

link|flag
Would you post a reference to this in the docs, please. – Sunny Mar 6 at 0:24
1  
@Sunny Run it through a debugger and see for yourself. – Rex M Mar 6 at 0:25
Makes sense. To clarify: if I have an attribute on a class that get "constructed" when another class asks for GetCustomAttributes and the attribute GetCustomAttributes of its properties in its constructor, then it should all kind work. – divitiae Mar 6 at 0:28
@Rex I could have run it through the debugger myself, but I figured stack overflow would be quicker, and it was :-P – divitiae Mar 6 at 0:29
@divitiae correct. – Rex M Mar 6 at 0:29
show 3 more comments
vote up 3 vote down

Reading the norm (17.3.2 in the C# 2.0 version) it's unspecified. Only the way to convert from the metatada to an instance is.

So you may need to test on different implementations, because if it isn't specified it's bound to be interpreted differently.

link|flag
sort of like a static constructor? – divitiae Mar 6 at 0:25
No, this one is actually specified. – VirtualBlackFox Mar 6 at 0:31
... executes at most once in a given application domain. The execution of a static constructor is triggered by the first of the following events to occur within an application domain: An instance of the class is created. Any of the static members of the class are referenced. – VirtualBlackFox Mar 6 at 0:32
@VirtualBlackFox a twofor! That clarifies that! +1 – divitiae Mar 6 at 0:36
vote up 1 vote down

The only thing that you can be sure is that it'll be called before is needed. It's not defined the exact time the constructor will be called.

Anyway, the behaviour is unespecified, so you shouldn't rely on whenever the constructur gets called by the current implementation.

link|flag
+1 - exactly my point in the comment to @Rex-M's answer. – Sunny Mar 6 at 15:08

Your Answer

Get an OpenID
or

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