System.PropertyReflectionLibrary.GetPropertiesWithAttribute C# (CSharp) 메소드

GetPropertiesWithAttribute() 공개 정적인 메소드

public static GetPropertiesWithAttribute ( object o ) : IEnumerable
o object
리턴 IEnumerable
        public static IEnumerable<PropertyInfo> GetPropertiesWithAttribute<T>(this object o)
            where T : Attribute =>
            o
                .GetType()
                .GetPropertiesWithAttribute<T>(ReflectionLibrary.INSTANCE_MEMBER_BINDING_FLAGS);

Same methods

PropertyReflectionLibrary::GetPropertiesWithAttribute ( IReflect t, BindingFlags flags ) : IEnumerable
PropertyReflectionLibrary::GetPropertiesWithAttribute ( Type type ) : IEnumerable