Esempio n. 1
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
Esempio n. 2
0
 object[] GetCustomAttributes(Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, attributeType, inherit));
 }
Esempio n. 3
0
 public override bool IsDefined(Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.IsDefined(this, attributeType, inherit));
 }
Esempio n. 4
0
 public virtual object [] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
Esempio n. 5
0
 public override object[] GetCustomAttributes(Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, attributeType, false));
 }
Esempio n. 6
0
 public static IList <CustomAttributeData> GetCustomAttributes(ParameterInfo target)
 {
     return(MonoCustomAttrs.GetCustomAttributesData(target));
 }
Esempio n. 7
0
 public static IList <CustomAttributeData> GetCustomAttributes(Module target)
 {
     return(MonoCustomAttrs.GetCustomAttributesData(target));
 }
Esempio n. 8
0
 internal static IList <CustomAttributeData> GetCustomAttributesInternal(RuntimeType target)
 {
     return(MonoCustomAttrs.GetCustomAttributesData(target));
 }