GetCustomAttributes() static private method

static private GetCustomAttributes ( ICustomAttributeProvider obj, Type attributeType, bool inherit ) : object[]
obj ICustomAttributeProvider
attributeType Type
inherit bool
return object[]
Esempio n. 1
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Esempio n. 2
0
 static Attribute[] InternalGetCustomAttributes(EventInfo element, Type type, bool inherit)
 {
     return((Attribute [])MonoCustomAttrs.GetCustomAttributes(element, type, inherit));
 }
Esempio n. 3
0
 public static Attribute[] GetCustomAttributes(Module element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Esempio n. 4
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 5
0
 public static Attribute[] GetCustomAttributes(Module element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 6
0
 public static Attribute[] GetCustomAttributes(Assembly element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 7
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
Esempio n. 8
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
Esempio n. 9
0
 public static Attribute[] GetCustomAttributes(MemberInfo element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);