ReflectionExtensions static class ReflectionExtensions Documentation Code public static T GetCustomAttribute<T>(this Type type) where T : Attribute public static T GetCustomAttribute<T>(this PropertyInfo propertyInfo) where T : Attribute public static Attribute[] GetCustomAttributes(this FieldInfo fieldInfo, bool inherit = true) public static Attribute[] GetCustomAttributes(this Type type, bool inherit = true) public static Attribute[] GetCustomAttributes(this PropertyInfo propertyInfo, bool inherit = true) public static T[] GetCustomAttributes<T>(this Type type, bool inherit = true) where T : Attribute public static T[] GetCustomAttributes<T>(this PropertyInfo propertyInfo, bool inherit = true) where T : Attribute public static FieldInfo GetDeclaredField(this Type type, string name) public static MethodInfo GetRuntimeMethod(this Type type, string name, Type[] types) public static PropertyInfo[] GetRuntimeProperties(this Type type) public static PropertyInfo GetRuntimeProperty(this Type type, string name) public static Type GetTypeInfo(this Type type) public static object GetValue(this PropertyInfo propertyInfo, object obj) public static void SetValue(this PropertyInfo propertyInfo, object obj, object value)