Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got some aspect like this:

public class MyAttribute : OnMethodInvocationAspect
{
    public int Offset { get; internal set; }

    public MyAttribute(int offset)
    {
        this.Offset = offset;
    }

    public override void OnInvocation(MethodInvocationEventArgs eventArgs)
    {
         //do some stuff
    }
}

Now I'm having my class, and I add my attribute to it:

class MyClass
{
    [MyAttribute(0x10)]
    public int MyProp { get; set; }
}

Works all fine. Yet now I want to use reflection to get my offset; when I do

typeof(MyClass).GetProperty("MyProp").GetCustomAttributes(true);

It returns nothing. How can I access my original Offset value (the property on my attribute)?

share|improve this question

1 Answer

up vote 10 down vote accepted

Ah, I fixed it this way:

First add an attribute to your attribute definition like:

[MulticastAttributeUsage(MulticastTargets.Method, PersistMetaData=true)]
public class MyAttribute : OnMethodInvocationAspect

And then I can call the get_ method of my property to get the data I want:

        foreach (PropertyInfo pi in typeof(T).GetProperties())
        {
            var entityAttribute = (MyAttribute)(typeof(T).GetMethod("get_" + pi.Name).GetCustomAttributes(typeof(MyAttribute), true).FirstOrDefault());
        }
share|improve this answer
Hmm can't accept my own answer yet :-) – Jan Jongboom Oct 8 '09 at 18:28
2  
I accept it :) 1234 – Gael Fraiteur Oct 9 '09 at 19:11
Thanks for question and answer :) – Ivan Benko Sep 23 '12 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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