System.PropertyReflectionLibrary.GetPropertiesWithAttribute C# (CSharp) Method

GetPropertiesWithAttribute() public static method

public static GetPropertiesWithAttribute ( Type type ) : IEnumerable
type Type
return IEnumerable
        public static IEnumerable<PropertyInfo> GetPropertiesWithAttribute<T>(this Type type)
            where T : Attribute =>
            type
                .GetPropertiesWithAttribute<T>(ReflectionLibrary.STATIC_MEMBER_BINDING_FLAGS);

Same methods

PropertyReflectionLibrary::GetPropertiesWithAttribute ( IReflect t, BindingFlags flags ) : IEnumerable
PropertyReflectionLibrary::GetPropertiesWithAttribute ( object o ) : IEnumerable