GetCustomAttributes() public static method

public static GetCustomAttributes ( Assembly element ) : System.Attribute[]
element Assembly
return System.Attribute[]
Ejemplo n.º 1
0
 public static Attribute[] GetCustomAttributes(Assembly element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }
Ejemplo n.º 2
0
 public static Attribute[] GetCustomAttributes(Assembly element, Type attributeType)
 {
     return(Attribute.GetCustomAttributes(element, attributeType, true));
 }
Ejemplo n.º 3
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType)
 {
     return(Attribute.GetCustomAttributes(element, attributeType, true));
 }
Ejemplo n.º 4
0
 public static Attribute[] GetCustomAttributes(Module element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }
Ejemplo n.º 5
0
 public static Attribute[] GetCustomAttributes(MemberInfo element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }