IKVM.Reflection.Module.GetCustomAttributesData C# (CSharp) Method

GetCustomAttributesData() public method

public GetCustomAttributesData ( ) : IList
return IList
        public IList<CustomAttributeData> GetCustomAttributesData()
        {
            return CustomAttributeData.GetCustomAttributes(this);
        }

Usage Example

Example #1
0
 public static IList <CustomAttributeData> __GetCustomAttributes(Module module, Type attributeType, bool inherit)
 {
     return(module.GetCustomAttributesData(attributeType));
 }
All Usage Examples Of IKVM.Reflection.Module::GetCustomAttributesData