IKVM.Reflection.Module.GetCustomAttributesData C# (CSharp) Метод

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

public GetCustomAttributesData ( ) : IList
Результат IList
        public IList<CustomAttributeData> GetCustomAttributesData()
        {
            return CustomAttributeData.GetCustomAttributes(this);
        }

Usage 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