GetCustomAttributesData() public method

public GetCustomAttributesData ( ) : IList
return IList
Exemplo n.º 1
0
 public static IList <CustomAttributeData> __GetCustomAttributes(Module module, Type attributeType, bool inherit)
 {
     return(module.GetCustomAttributesData(attributeType));
 }
Exemplo n.º 2
0
		public static IList<CustomAttributeData> __GetCustomAttributes(Module module, Type attributeType, bool inherit)
		{
			return module.GetCustomAttributesData(attributeType);
		}
Exemplo n.º 3
0
 public static IList <CustomAttributeData> GetCustomAttributes(Module module)
 {
     return(module.GetCustomAttributesData(null));
 }
Exemplo n.º 4
0
		public static IList<CustomAttributeData> GetCustomAttributes(Module module)
		{
			return module.GetCustomAttributesData(null);
		}