Catel.Data.CatelTypeInfo.FindNonCatelProperties C# (CSharp) 메소드

FindNonCatelProperties() 개인적인 정적인 메소드

Finds the non catel properties.
private static FindNonCatelProperties ( Type type ) : IEnumerable
type System.Type The type.
리턴 IEnumerable
        private static IEnumerable<PropertyInfo> FindNonCatelProperties(Type type)
        {
            return (from property in type.GetPropertiesEx(BindingFlagsHelper.GetFinalBindingFlags(true, false, true))
                    where property.PropertyType != typeof(PropertyData)
                    select property).ToList();
        }