GetCustomAttributesData() 공개 메소드

public GetCustomAttributesData ( ) : IList
리턴 IList
예제 #1
0
 public static IList <CustomAttributeData> __GetCustomAttributes(Module module, Type attributeType, bool inherit)
 {
     return(module.GetCustomAttributesData(attributeType));
 }
예제 #2
0
		public static IList<CustomAttributeData> __GetCustomAttributes(Module module, Type attributeType, bool inherit)
		{
			return module.GetCustomAttributesData(attributeType);
		}
예제 #3
0
 public static IList <CustomAttributeData> GetCustomAttributes(Module module)
 {
     return(module.GetCustomAttributesData(null));
 }
예제 #4
0
		public static IList<CustomAttributeData> GetCustomAttributes(Module module)
		{
			return module.GetCustomAttributesData(null);
		}