Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#

LumiSoft MailServer

Rate me:
Please Sign up or sign in to vote.
3.79/5 (22 votes)
17 Nov 2006CPOL1 min read 321.8K   4.9K   74  
Full featured SMTP/POP3/IMAP server
using System;
using System.Collections.Generic;
using System.Text;

namespace LumiSoft.Net.SDP
{
    /// <summary>
    /// SDP media.
    /// </summary>
    public class SDP_Media
    {
        private SDP_MediaDescription m_pMediaDescription = null;
        private string               m_Title             = null;
        private SDP_ConnectionData   m_pConnectionData   = null;
        private string               m_EncryptionKey     = null;
        private List<SDP_Attribute>  m_pAttributes       = null;

        /// <summary>
        /// Default constructor.
        /// </summary>
        public SDP_Media()
        {
            m_pAttributes = new List<SDP_Attribute>();
        }


        #region method ToValue

        /// <summary>
        /// Converts media entity to corresponding media lines. Attributes included.
        /// </summary>
        /// <returns></returns>
        public string ToValue()
        {
            /*
                m=  (media name and transport address)
                i=* (media title)
                c=* (connection information -- optional if included at session level)
                b=* (zero or more bandwidth information lines)
                k=* (encryption key)
                a=* (zero or more media attribute lines)
            */

            StringBuilder retVal = new StringBuilder();

            // m Media description
            if(this.MediaDescription != null){
                retVal.Append(this.MediaDescription.ToValue());
            }
            // i media title
            if(!string.IsNullOrEmpty(this.Title)){
                retVal.AppendLine("i=" + this.Title);
            }
            // c Connection Data
            if(this.ConnectionData != null){
                retVal.Append(this.ConnectionData.ToValue());
            }
            // a Attributes
            foreach(SDP_Attribute attribute in this.Attributes){
                retVal.Append(attribute.ToValue());
            }

            return retVal.ToString();
        }

        #endregion


        #region Properties Implementation

        /// <summary>
        /// Gets or sets media description.
        /// </summary>
        public SDP_MediaDescription MediaDescription
        {
            get{ return m_pMediaDescription; }

            set{ m_pMediaDescription = value; }
        }

        /// <summary>
        /// Gets or sets media title.
        /// </summary>
        public string Title
        {
            get{ return m_Title; }

            set{ m_Title = value; }
        }

        /// <summary>
        /// Gets or sets connection data. This is optional value if SDP message specifies this value,
        /// null means not specified.
        /// </summary>
        public SDP_ConnectionData ConnectionData
        {
            get{ return m_pConnectionData; }

            set{ m_pConnectionData = value; }
        }

        /// <summary>
        /// Gets or sets media encryption key info.
        /// </summary>
        public string EncryptionKey
        {
            get{ return m_EncryptionKey; }

            set{ m_EncryptionKey = value; }
        }

        /// <summary>
        /// Gets media attributes collection. This is optional value, Count == 0 means not specified.
        /// </summary>
        public List<SDP_Attribute> Attributes
        {
            get{ return m_pAttributes; }
        }

        #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
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions