/// <summary> /// Carga los espacios de nombres /// </summary> private MLNameSpacesCollection LoadNameSpaces(XmlAttributeCollection objColXMLAttributes) { MLNameSpacesCollection objColNameSpaces = new MLNameSpacesCollection(); // Carga los espacios de nombres if (objColXMLAttributes != null) { foreach (XmlAttribute objXMLAttribute in objColXMLAttributes) { if (objXMLAttribute.Prefix == "xmlns") { MLNameSpace objNameSpace = new MLNameSpace(objXMLAttribute.LocalName, Decode(objXMLAttribute.InnerText)); // Añade el espacio de nombres objColNameSpaces.Add(objNameSpace); } } } // Devuelve los espacios de nombres return(objColNameSpaces); }
/// <summary> /// Carga los espacios de nombres /// </summary> private MLNameSpacesCollection LoadNameSpaces(XmlAttributeCollection objColXMLAttributes) { MLNameSpacesCollection objColNameSpaces = new MLNameSpacesCollection(); // Carga los espacios de nombres if (objColXMLAttributes != null) foreach (XmlAttribute objXMLAttribute in objColXMLAttributes) if (objXMLAttribute.Prefix == "xmlns") { MLNameSpace objNameSpace = new MLNameSpace(objXMLAttribute.LocalName, Decode(objXMLAttribute.InnerText)); // Añade el espacio de nombres objColNameSpaces.Add(objNameSpace); } // Devuelve los espacios de nombres return objColNameSpaces; }