Volante.Impl.ClassDescriptor.isObjectProperty C# (CSharp) Méthode

isObjectProperty() private static méthode

private static isObjectProperty ( Type cls, FieldInfo f ) : bool
cls System.Type
f System.Reflection.FieldInfo
Résultat bool
        private static bool isObjectProperty(Type cls, FieldInfo f)
        {
            return typeof(PersistentWrapper).IsAssignableFrom(cls) && f.Name.StartsWith("r_");
        }