GetCustomAttributes() статический приватный Метод

static private GetCustomAttributes ( ICustomAttributeProvider obj, Type attributeType, bool inherit ) : object[]
obj ICustomAttributeProvider
attributeType Type
inherit bool
Результат object[]
Пример #1
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Пример #2
0
 static Attribute[] InternalGetCustomAttributes(EventInfo element, Type type, bool inherit)
 {
     return((Attribute [])MonoCustomAttrs.GetCustomAttributes(element, type, inherit));
 }
Пример #3
0
 public static Attribute[] GetCustomAttributes(Module element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Пример #4
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Пример #5
0
 public static Attribute[] GetCustomAttributes(Module element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Пример #6
0
 public static Attribute[] GetCustomAttributes(Assembly element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Пример #7
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
Пример #8
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
Пример #9
0
 public static Attribute[] GetCustomAttributes(MemberInfo element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);