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

isVolanteInternalType() static private méthode

static private isVolanteInternalType ( Type t ) : bool
t System.Type
Résultat bool
        static bool isVolanteInternalType(Type t)
        {
            return t.Namespace == typeof(IPersistent).Namespace
                && t != typeof(IPersistent) && t != typeof(PersistentContext) && t != typeof(Persistent);
        }