GetCustomAttributesData() public method

public GetCustomAttributesData ( ) : IList
return IList
		public static IList<CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
		{
			return assembly.GetCustomAttributesData(attributeType);
		}
Example #2
0
 public static IList <CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
 {
     return(assembly.GetCustomAttributesData(attributeType));
 }
		public static IList<CustomAttributeData> GetCustomAttributes(Assembly assembly)
		{
			return assembly.GetCustomAttributesData(null);
		}
Example #4
0
 public static IList <CustomAttributeData> GetCustomAttributes(Assembly assembly)
 {
     return(assembly.GetCustomAttributesData(null));
 }