GetCustomAttributesData() публичный Метод

public GetCustomAttributesData ( ) : IList
Результат IList
		public static IList<CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
		{
			return assembly.GetCustomAttributesData(attributeType);
		}
Пример #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);
		}
Пример #4
0
 public static IList <CustomAttributeData> GetCustomAttributes(Assembly assembly)
 {
     return(assembly.GetCustomAttributesData(null));
 }