예제 #1
0
        public IList <string> ObtenerElemento(string psNombreElemento, Definiciones.TipoSalida poTipoSalida)
        {
            IList <string> loValores = new List <string>();

            try
            {
                using (XmlTextReader loLector = new XmlTextReader(base._sDocumento))
                {
                    loLector.WhitespaceHandling = WhitespaceHandling.None;

                    while (loLector.Read())
                    {
                        if (loLector.NodeType != XmlNodeType.Element)
                        {
                            continue;
                        }

                        if (loLector.LocalName == psNombreElemento && !loLector.IsEmptyElement)
                        {
                            XElement loNodo = (XElement)XNode.ReadFrom(loLector);

                            if (loNodo.HasElements)
                            {
                                foreach (XElement loElemento in loNodo.Elements())
                                {
                                    loValores.Add(loElemento.ToString());
                                }
                            }
                            else
                            {
                                loValores.Add(loNodo.Value);
                            }

                            if (poTipoSalida == Definiciones.TipoSalida.Simple)
                            {
                                break;
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw new Excepcion(ex.Message, ex);
            }

            return(loValores);
        }
예제 #2
0
        public IList <string> ObtenerAtributo(string psNombreElemento, string psNombreAtributo, Definiciones.TipoSalida poTipoSalida)
        {
            IList <string> loValores = new List <string>();

            try
            {
                using (XmlTextReader loLector = new XmlTextReader(base._sDocumento))
                {
                    loLector.WhitespaceHandling = WhitespaceHandling.None;

                    while (loLector.Read())
                    {
                        if (loLector.NodeType != XmlNodeType.Element)
                        {
                            continue;
                        }

                        if (loLector.LocalName == psNombreElemento)
                        {
                            while (loLector.MoveToNextAttribute())
                            {
                                if (loLector.Name == psNombreAtributo)
                                {
                                    loValores.Add(loLector.Value);

                                    if (poTipoSalida == Definiciones.TipoSalida.Simple)
                                    {
                                        break;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw new Excepcion(ex.Message, ex);
            }

            return(loValores);
        }