GetCustomAttributes() 공개 정적인 메소드

public static GetCustomAttributes ( Assembly element ) : System.Attribute[]
element Assembly
리턴 System.Attribute[]
예제 #1
0
 public static Attribute[] GetCustomAttributes(Assembly element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }
예제 #2
0
 public static Attribute[] GetCustomAttributes(Assembly element, Type attributeType)
 {
     return(Attribute.GetCustomAttributes(element, attributeType, true));
 }
예제 #3
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType)
 {
     return(Attribute.GetCustomAttributes(element, attributeType, true));
 }
예제 #4
0
 public static Attribute[] GetCustomAttributes(Module element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }
예제 #5
0
 public static Attribute[] GetCustomAttributes(MemberInfo element)
 {
     return(Attribute.GetCustomAttributes(element, true));
 }