Beispiel #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;
 }
Beispiel #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?
 }
Beispiel #3
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?

        }
Beispiel #4
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;
 }