Volante.Impl.ClassDescriptor.isVolanteInternalType C# (CSharp) Method

isVolanteInternalType() static private method

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