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();
        }