예제 #1
0
 public ConfigValidator(ReplicationTopology topology, string configObjectName) : base(topology)
 {
     this.searchScope         = SearchScope.Subtree;
     this.orgConfigObjectList = new Dictionary <string, ExSearchResultEntry>();
     this.orgAdRootPath       = DistinguishedName.RemoveLeafRelativeDistinguishedNames(base.Topology.LocalHub.DistinguishedName, 4);
     this.configObjectName    = configObjectName;
 }
예제 #2
0
 public RecipientValidator(ReplicationTopology topology) : base(topology, "Recipients")
 {
     base.ConfigDirectoryPath = string.Empty;
     base.LdapQuery           = Schema.Query.QueryAllSmtpRecipients;
     this.orgConfigRoot       = base.OrgAdRootPath;
     base.OrgAdRootPath       = DistinguishedName.RemoveLeafRelativeDistinguishedNames(base.Topology.LocalHub.DistinguishedName, 8);
     this.compareAttributes   = this.PayloadAttributes;
 }