Пример #1
0
        public MailServer(MailServer e)
        {
            this.Id          = e.Id;
            this.DisplayName = e.DisplayName;

            this.OutgoingServer               = e.OutgoingServer;
            this.PortIncomingServer           = e.PortIncomingServer;
            this.PortOutgoingServer           = e.PortOutgoingServer;
            this.IsIncomeSecureConnection     = e.IsIncomeSecureConnection;
            this.IsOutgoingSecureConnection   = e.IsOutgoingSecureConnection;
            this.IsOutgoingWithAuthentication = e.IsOutgoingWithAuthentication;
            this.PortIncomingChecked          = e.PortIncomingChecked;
            this.PortOutgoingChecked          = e.PortOutgoingChecked;
            this.IncomingProtocol             = e.IncomingProtocol;
            this.IncomingServer               = e.IncomingServer;
            this.Dominus = e.Dominus;
            this.isPec   = e.IsPec;
        }
Пример #2
0
 public MailUser(MailServer e)
     : base(e)
 {
 }
Пример #3
0
        public MailServer Clone()
        {
            MailServer s = new MailServer(this);

            return(s);
        }
Пример #4
0
 public MailServer saveServer(MailServer e)
 {
     return(e);
 }