public static bool IsDefined(Module element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
public static bool IsDefined(Module element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
public static Attribute[] GetCustomAttributes(Module element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
public static Attribute[] GetCustomAttributes(MemberInfo element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
static bool InternalIsDefined(PropertyInfo element, Type attributeType, bool inherit) { return(MonoCustomAttrs.IsDefined(element, attributeType, inherit)); }
public static Attribute[] GetCustomAttributes(Assembly element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
public static Attribute[] GetCustomAttributes(MemberInfo element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
public static Attribute[] GetCustomAttributes(Assembly element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
public override object[] GetCustomAttributes(bool inherit) { return(MonoCustomAttrs.GetCustomAttributes(this, inherit)); }
public override bool IsDefined(Type attributeType, bool inherit) { return(MonoCustomAttrs.IsDefined(this, attributeType, inherit)); }
public static bool IsDefined(ParameterInfo element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
public static Attribute[] GetCustomAttributes(Module element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
public static bool IsDefined(ParameterInfo element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
static Attribute[] InternalGetCustomAttributes(EventInfo element, Type type, bool inherit) { return((Attribute [])MonoCustomAttrs.GetCustomAttributes(element, type, inherit)); }