GetCustomAttributes() static private method

static private GetCustomAttributes ( Assembly assembly, RuntimeType caType ) : Object[]
assembly Assembly
caType RuntimeType
return Object[]
Example #1
0
 public override Object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, typeof(object) as RuntimeType));
 }
 public override object[] GetCustomAttributes(Type attributeType, bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, attributeType, inherit));
 }
Example #3
0
 object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, inherit));
 }
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, false));
 }
 /////////////////////////// ICustomAttribute Interface
 // Return an array of all of the custom attributes
 public override Object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, null, inherit));
 }