vote up 3 vote down star

So, if i have:

public class Sedan : Car 
{
    /// ...
}

public class Car : Vehicle, ITurn
{
    [MyCustomAttribute(1)]
    public int TurningRadius { get; set; }
}

public abstract class Vehicle : ITurn
{
    [MyCustomAttribute(2)]
    public int TurningRadius { get; set; }
}

public interface ITurn
{
    [MyCustomAttribute(3)]
    int TurningRadius { get; set; }
}

What magic can I use to do something like:

[Test]
public void Should_Use_Magic_To_Get_CustomAttributes_From_Ancestry()
{
    var property = typeof(Sedan).GetProperty("TurningRadius");

    var attributes = SomeMagic(property);

    Assert.AreEqual(attributes.Count, 3);
}


Both

property.GetCustomAttributes(true);

And

Attribute.GetCustomAttributes(property, true);

Only return 1 attribute. The instance is the one built with MyCustomAttribute(1). This doesn't seem to work as expected.

flag

74% accept rate

3 Answers

vote up 1 vote down

this is a framework issue. Interface attributes are ignored by GetCustomAttributes. see the comment on this blog post http://hyperthink.net/blog/getcustomattributes-gotcha/#comment-65

link|flag
vote up 0 vote down

Try this:

using System;
using System.Reflection;

namespace ConsoleApplication1 {
  class Program {
    static void Main(string[] args) {
      Type t = typeof(Sedan);
      while (t != typeof(object)) {
        DumpAttr(t);
        DumpAttr(t.GetInterface("ITurn"));
        t = t.BaseType;
      }
      Console.ReadLine();
    }
    static void DumpAttr(Type t) {
      if (t == null) return;
      PropertyInfo pi = t.GetProperty("TurningRadius");
      object[] attrs = pi.GetCustomAttributes(typeof(MyCustomAttribute), false);
      foreach (MyCustomAttribute attr in attrs) {
        Console.WriteLine("{0}, {1}", t.Name, attr.Value);
      }
    }
  }
  public class MyCustomAttribute : Attribute {
    public int Value { get; set; }
    public MyCustomAttribute(int value) { Value = value; }
  }

  public class Sedan : Car { }

  public class Car : Vehicle {
    [MyCustomAttribute(1)]
    public new int TurningRadius { get; set; }
  }

  public abstract class Vehicle : ITurn {
    [MyCustomAttribute(2)]
    public int TurningRadius { get; set; }
  }

  public interface ITurn {
    [MyCustomAttribute(0)]
    int TurningRadius { get; set; }
  }

}
link|flag
That's the type of answer I'm looking for! I'll be trying this shortly. Thanks. – TheDeeno Nov 7 '08 at 20:07
Oh, I just realized that your not walking the ancestry. You just hard coded the specific scenario. While it works for this case, this is just an example. – TheDeeno Nov 7 '08 at 20:10
I should be able to use this as a template though. thanks. – TheDeeno Nov 7 '08 at 20:11
vote up 0 vote down
object[] SomeMagic (PropertyInfo property)
{
    return property.GetCustomAttributes(true);
}

UPDATE:

Since my above answer doesn't work why not to try something like this:

public void Should_Use_Magic_To_Get_CustomAttributes_From_Ancestry()
{

    Assert.AreEqual(checkAttributeCount (typeof (Sedan), "TurningRadious"), 3);
}


int checkAttributeCount (Type type, string propertyName)
{
        var attributesCount = 0;

        attributesCount += countAttributes (type, propertyName);
        while (type.BaseType != null)
        {
            type = type.BaseType;
            attributesCount += countAttributes (type, propertyName);
        }

        foreach (var i in type.GetInterfaces ())
            attributesCount += countAttributes (type, propertyName);
        return attributesCount;
}

int countAttributes (Type t, string propertyName)
{
    var property = t.GetProperty (propertyName);
    if (property == null)
        return 0;
    return (property.GetCustomAttributes (false).Length);
}
link|flag
In the provided example the assertion fails. It returns 1 attribute, not all 3. – TheDeeno Nov 7 '08 at 19:52
You're right, that's because it's really just one customattribute. – AlbertEin Nov 7 '08 at 19:59
If I change the instance of the attribute it seems to only return the one on car. So its not searching after Car. See updated question. Ty for the help though. – TheDeeno Nov 7 '08 at 20:01
Ok, updated the answer, hope it helps – AlbertEin Nov 7 '08 at 20:13

Your Answer

Get an OpenID
or

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