⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commonmailserverconfig.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.WebSite.Admin.Accessories
{
    using PowerEasy.Enumerations;
    using System;

    [Serializable]
    public class CommonMailServerConfig
    {
        private PowerEasy.Enumerations.AuthenticationType m_AuthenticationType;
        private bool m_EnabledSsl;
        private string m_MailFrom;
        private string m_MailServer;
        private string m_MailServerPassWord;
        private string m_MailServerUserName;
        private int m_Port;

        public PowerEasy.Enumerations.AuthenticationType AuthenticationType
        {
            get
            {
                return this.m_AuthenticationType;
            }
            set
            {
                this.m_AuthenticationType = value;
            }
        }

        public bool EnabledSsl
        {
            get
            {
                return this.m_EnabledSsl;
            }
            set
            {
                this.m_EnabledSsl = value;
            }
        }

        public string MailFrom
        {
            get
            {
                return this.m_MailFrom;
            }
            set
            {
                this.m_MailFrom = value;
            }
        }

        public string MailServer
        {
            get
            {
                return this.m_MailServer;
            }
            set
            {
                this.m_MailServer = value;
            }
        }

        public string MailServerPassWord
        {
            get
            {
                return this.m_MailServerPassWord;
            }
            set
            {
                this.m_MailServerPassWord = value;
            }
        }

        public string MailServerUserName
        {
            get
            {
                return this.m_MailServerUserName;
            }
            set
            {
                this.m_MailServerUserName = value;
            }
        }

        public int Port
        {
            get
            {
                return this.m_Port;
            }
            set
            {
                this.m_Port = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -