Click here to Skip to main content
15,893,381 members
Articles / Programming Languages / C#

IMAP and POP3 Clients in C#

Rate me:
Please Sign up or sign in to vote.
4.67/5 (21 votes)
28 Sep 2012CPOL1 min read 258.8K   16.6K   48  
IMAP & POP3 Clients C#. A library for intuitive ease of use of these two protocols.
using System;
using System.IO;
using System.Collections.Generic;
using System.Text;
using System.Xml;

namespace LumiSoft.Net.UPnP
{
    /// <summary>
    /// This class represents UPnP error.
    /// </summary>
    public class UPnP_Exception : Exception
    {
        private int    m_ErrorCode = 0;
        private string m_ErrorText = "";

        /// <summary>
        /// Default constructor.
        /// </summary>
        /// <param name="errorCode">UPnP error code.</param>
        /// <param name="errorText">UPnP error text.</param>
        public UPnP_Exception(int errorCode,string errorText) : base("UPnP error: " + errorCode + " " + errorText + ".")
        {
            m_ErrorCode = errorCode;
            m_ErrorText = errorText;
        }

        #region static method Parse

        /// <summary>
        /// Parses UPnP exception from UPnP xml error.
        /// </summary>
        /// <param name="stream">Error xml stream.</param>
        /// <returns>Returns UPnP exception.</returns>
        /// <exception cref="ArgumentNullException">Is raised when <b>stream</b> is null reference.</exception>
        /// <exception cref="ParseException">Is raised when parsing fails.</exception>
        public static UPnP_Exception Parse(Stream stream)
        {
            if(stream == null){
                throw new ArgumentNullException("stream");
            }

            int    errorCode = -1;
            string errorText = null;

            try{
                XmlDocument xml = new XmlDocument();
                xml.Load(stream);
                
                // Loop XML tree by nodes.
                List<XmlNode> queue = new List<XmlNode>();
                queue.Add(xml);
                while(queue.Count > 0){
                    XmlNode currentNode = queue[0];
                    queue.RemoveAt(0);
               
                    if(string.Equals("UPnPError",currentNode.Name,StringComparison.InvariantCultureIgnoreCase)){                        
                        foreach(XmlNode node in currentNode.ChildNodes){                        
                            if(string.Equals("errorCode",node.Name,StringComparison.InvariantCultureIgnoreCase)){
                                errorCode = Convert.ToInt32(node.InnerText);
                            }
                            else if(string.Equals("errorDescription",node.Name,StringComparison.InvariantCultureIgnoreCase)){
                                errorText = node.InnerText;
                            }
                        }

                        break;
                    }
                    else if(currentNode.ChildNodes.Count > 0){
                        for(int i=0;i<currentNode.ChildNodes.Count;i++){
                            queue.Insert(i,currentNode.ChildNodes[i]);
                        }
                    }                    
                }
            }
            catch{
            }

            if(errorCode == -1 || errorText == null){
                throw new ParseException("Failed to parse UPnP error.");
            }
                        
            return new UPnP_Exception(errorCode,errorText);
        }

        #endregion


        #region Properties implementation

        /// <summary>
        /// Gets UPnP error code.
        /// </summary>
        public int ErrorCode
        {
            get{ return m_ErrorCode; }
        }

        /// <summary>
        /// Gets UPnP error text.
        /// </summary>
        public string ErrorText
        {
            get{ return m_ErrorText; }
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) D.Net Solution
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions