private void LeerXML_correoLog(Proceso proceso, XmlNode xmlroot)
        {
            string credentials_user = xmlroot["credentials_user"].Attributes["value"].Value;
            string credentials_pass = xmlroot["credentials_pass"].Attributes["value"].Value;
            string host = xmlroot["host"].Attributes["value"].Value;
            int port = Int32.TryParse(xmlroot["port"].Attributes["value"].Value, out port) ? port : 0;
            string asunto = xmlroot["asunto"].Attributes["value"].Value;
            int lapso = Int32.TryParse(xmlroot["lapsomin"].Attributes["value"].Value, out lapso) ? lapso : 0;

            XmlNodeList nodos = xmlroot["para"].ChildNodes;

            XmlNode nodoTemp;

            string body = "correo de log";

            IList<string> para = new List<string>();

            proceso.AgregarParametros_correoLog(credentials_user, credentials_pass, host, port, asunto, body, lapso);

            for (int i = 0; i < nodos.Count; i++)
            {
                nodoTemp = nodos.Item(i);
                if (nodoTemp.Name.Equals("correo"))
                {
                    para.Add(nodoTemp.Attributes["value"].Value);
                }

            }

            foreach (string item in para)
            {
                proceso.mensajeLog.correo.AgregarPara(item);
            }

            /////////////////////SMS////////////////
            try
            {
                proceso.mensajeLog.AgregarParamSMS(string.Empty, string.Empty, string.Empty, string.Empty);

            }
            catch (Exception exsms)
            {

            }
        }