鉴于课程:
[ProtoContract]
[Serializable]
public class TestClass
{
[ProtoMember(1)]
public string SomeValue { get; set; }
}
方法:
public static void Set(object objectToCache)
{
}
是否可以检查objectToCache
是否具有属性ProtoContract
?
答案 0 :(得分:2)
最简单的方法是使用以下代码:
public static void Set(object objectToCache)
{
Console.WriteLine(objectToCache.GetType().IsDefined(typeof(MyAttribute), true));
}
答案 1 :(得分:1)
是:
var attributes = TestClass.GetType().GetCustomAttributes(typeof(ProtoContract), true);
if(attributes.Length < 1)
return; //we don't have the attribute
var attribute = attributes[0] as ProtoContract;
if(attribute != null)
{
//access the attribute as needed
}
答案 2 :(得分:1)
使用GetCustomAttributes
将返回给定对象具有的属性集合。然后检查是否有您想要的类型
public static void Main(string[] args)
{
Set(new TestClass());
}
public static void Set(object objectToCache)
{
var result = objectToCache.GetType().GetCustomAttributes(false)
.Any(att => att is ProtoContractAttribute);
// Or other overload:
var result2 = objectToCache.GetType().GetCustomAttributes(typeof(ProtoContractAttribute), false).Any();
// result - true
}
阅读更多关于IsDefined
АлександрЛысенко的信息表明它似乎正是您所寻找的:
如果将attributeType或其任何派生类型的一个或多个实例应用于此成员,则返回true;否则,错误。