Esempio n. 1
0
 public static bool IsDefined(Module element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
Esempio n. 2
0
 public static bool IsDefined(Module element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
Esempio n. 3
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
Esempio n. 4
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
Esempio n. 5
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
Esempio n. 6
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
Esempio n. 7
0
 public static Attribute[] GetCustomAttributes(MemberInfo element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Esempio n. 8
0
 static bool InternalIsDefined(PropertyInfo element, Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.IsDefined(element, attributeType, inherit));
 }
Esempio n. 9
0
 public static Attribute[] GetCustomAttributes(Assembly element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
Esempio n. 10
0
 public static Attribute[] GetCustomAttributes(MemberInfo element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 11
0
 public static Attribute[] GetCustomAttributes(Assembly element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 12
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
Esempio n. 13
0
 public override bool IsDefined(Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.IsDefined(this, attributeType, inherit));
 }
Esempio n. 14
0
 public static bool IsDefined(ParameterInfo element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
Esempio n. 15
0
 public static Attribute[] GetCustomAttributes(Module element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
Esempio n. 16
0
 public static bool IsDefined(ParameterInfo element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
Esempio n. 17
0
 static Attribute[] InternalGetCustomAttributes(EventInfo element, Type type, bool inherit)
 {
     return((Attribute [])MonoCustomAttrs.GetCustomAttributes(element, type, inherit));
 }