示例#1
0
 internal void CopyFixed(MX source)
 {
     this.ID             = source.ID;
     this.CreateDate     = source.CreateDate;
     this.DomainID       = source.DomainID;
     this.SMTPDomainName = source.SMTPDomainName;
     this.Preference     = source.Preference;
     this.UpdateDate     = source.UpdateDate;
 }
示例#2
0
 internal void ApplyChanges(MX source)
 {
     if (source == null)
     {
         throw new ArgumentNullException("source");
     }
     this.SMTPDomainName = source.SMTPDomainName;
     this.Preference     = source.Preference;
     this.UpdateDate     = DateTime.Now; //---TODO: Use UTC Here?
 }
示例#3
0
文件: MX.cs 项目: DM-TOR/nhin-d
        internal void ApplyChanges(MX source)
        {
            if (source == null)
            {
                throw new ArgumentNullException("source");
            }
            this.SMTPDomainName = source.SMTPDomainName;
            this.Preference = source.Preference;
            this.UpdateDate = DateTime.Now; //---TODO: Use UTC Here?

        }
示例#4
0
文件: MX.cs 项目: DM-TOR/nhin-d
 internal void CopyFixed(MX source)
 {
     this.ID = source.ID;
     this.CreateDate = source.CreateDate;
     this.DomainID = source.DomainID;
     this.SMTPDomainName = source.SMTPDomainName;
     this.Preference = source.Preference;
     this.UpdateDate = source.UpdateDate;
 }