void FindNamespacesWithoutAssociatedPaths(XmlNamespaceCollection namespacesInScope)
 {
     foreach (XmlNamespace ns in namespacesInScope)
     {
         if (!HavePathForNamespace(ns))
         {
             namespacesWithoutPaths.Add(ns);
         }
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Gets the list of namespaces in the namespace list.
        /// </summary>
        public XmlNamespaceCollection GetNamespaces()
        {
            XmlNamespaceCollection namespaces = new XmlNamespaceCollection();

            for (int i = 0; i < namespacesDataGridView.Rows.Count - 1; ++i)
            {
                DataGridViewRow row    = namespacesDataGridView.Rows[i];
                string          prefix = GetPrefix(row);
                string          uri    = GetNamespace(row);
                if (prefix.Length == 0 && uri.Length == 0)
                {
                    // Ignore.
                }
                else
                {
                    namespaces.Add(new XmlNamespace(prefix, uri));
                }
            }
            return(namespaces);
        }
Ejemplo n.º 3
0
        public XmlCompletionItemCollection GetElementCompletion(XmlElementPathsByNamespace pathsByNamespace, XmlSchemaCompletion defaultSchema)
        {
            XmlCompletionItemCollection items = new XmlCompletionItemCollection();

            foreach (XmlElementPath path in pathsByNamespace)
            {
                items.AddRange(GetChildElementCompletion(path, defaultSchema));
            }

            XmlNamespaceCollection namespaceWithoutPaths = pathsByNamespace.NamespacesWithoutPaths;

            if (items.Count == 0)
            {
                if (!IsDefaultSchemaNamespaceDefinedInPathsByNamespace(namespaceWithoutPaths, defaultSchema))
                {
                    namespaceWithoutPaths.Add(defaultSchema.Namespace);
                }
            }
            items.AddRange(GetRootElementCompletion(namespaceWithoutPaths));
            return(items);
        }