NVelocity.Runtime.VelocimacroManager.UsingNamespaces C# (CSharp) Метод

UsingNamespaces() приватный Метод

determines if currently using namespaces.
private UsingNamespaces ( String ns ) : bool
ns String currently ignored
Результат bool
        private bool UsingNamespaces(String ns)
        {
            /*
            *  if the big switch turns of namespaces, then ignore the rules
            */

            if (!namespacesOn)
            {
                return false;
            }

            /*
            *  currently, we only support the local template namespace idea
            */

            if (inlineLocalMode)
            {
                return true;
            }

            return false;
        }