GetCustomAttributesData() public method

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