System.MethodReflectionLibrary.GetMethodsWithAttribute C# (CSharp) Method

GetMethodsWithAttribute() public static method

public static GetMethodsWithAttribute ( object o ) : IEnumerable
o object
return IEnumerable
        public static IEnumerable<MethodInfo> GetMethodsWithAttribute<T>(this object o)
            where T : Attribute =>
            o
                .GetType()
                .GetMethodsWithAttribute<T>(ReflectionLibrary.INSTANCE_MEMBER_BINDING_FLAGS);

Same methods

MethodReflectionLibrary::GetMethodsWithAttribute ( IReflect t, BindingFlags flags ) : IEnumerable
MethodReflectionLibrary::GetMethodsWithAttribute ( Type type ) : IEnumerable