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