Example #1
0
 // Internal interface used when ICustomAttributeProvider
 // is declared as private in ParameterInfo.
 internal override Object[] ClrGetCustomAttributes(bool inherit)
 {
     return(ClrHelpers.GetCustomAttributes(this, inherit));
 }
Example #2
0
 Object[] ICustomAttributeProvider.GetCustomAttributes
     (Type type, bool inherit)
 {
     return(ClrHelpers.GetCustomAttributes(this, type, inherit));
 }
Example #3
0
 public override Object[] GetCustomAttributes(Type type, bool inherit)
 {
     return(ClrHelpers.GetCustomAttributes(this, type, inherit));
 }
Example #4
0
 // Get the custom attributes associated with this assembly.
 public virtual Object[] GetCustomAttributes(bool inherit)
 {
     return(ClrHelpers.GetCustomAttributes(this, inherit));
 }