从接口方法和类方法中获取属性



当方法重载时,从类方法和接口方法获取属性值的最佳方法是什么?

例如,我想知道在下面的例子中,带有一个参数的Get方法有两个属性,值为5和"any",而另一个方法有值为7和"private"的属性。

public class ScopeAttribute : System.Attribute
{
    public string Allowed { get; set; }    
}
public class SizeAttribute : System.Attribute
{
    public int Max { get; set; }
}
public interface Interface1
{
    [SizeAttribute( Max = 5 )]
    string Get( string name );
    [SizeAttribute( Max = 7 )]
    string Get( string name, string area );
}
public class Class1 : Interface1
{
    [ScopeAttribute( Allowed = "any" )]
    public string Get( string name )
    {
        return string.Empty;
    }
    [ScopeAttribute( Allowed = "private" )]
    public string Get( string name, string area )
    {
        return string.Empty;
    }
}

我找到的唯一方法是检查类实现了什么接口,并检查这些接口上的属性(如果存在)的属性:

static bool HasAttribute (PropertyInfo property, string attribute) {
  if (property == null)
    return false;
  if (GetCustomAttributes ().Any (a => a.GetType ().Name == attribute))
    return true;
  var interfaces = property.DeclaringType.GetInterfaces ();
  for (int i = 0; i < interfaces.Length; i++)
    if (HasAttribute (interfaces[i].GetProperty (property.Name), attribute))
      return true;
  return false;
}

你可能可以采用同样简单的方法。


注意:测试了整个方法,但代码本身是临时的,可能无法编译

您可以使用TypeDescriptor API

System.ComponentModel.TypeDescriptor.GetAttributes(object)

您应该使用反射来获得自定义属性值

使用MemberInfo.GetCustomAttributes方法返回附加到成员的自定义属性

这是教程http://msdn.microsoft.com/en-us/library/aa288454(v=VS.71).aspx

EDIT:要从界面获取属性,请查看此处

相关内容

  • 没有找到相关文章

最新更新