Example #1
0
 public void ChangeServerInformation(LdapServerInformation ls)
 {
     m_impl = new DirectoryAnalyzerImpl(ls);
 }
Example #2
0
 public DirectoryAnalyzer(LdapServerInformation ls)
 {
     m_impl = new DirectoryAnalyzerImpl(ls);
 }
Example #3
0
 // Legacy testing constructor. Loads fresh registry information from the default location into a temporary LdapServerInformation
 // Required because the tests sometimes bodge the registry
 internal DirectoryAnalyzer(bool bTestCtor)
 {
     m_impl = new DirectoryAnalyzerImpl(new LdapServerInformation(LdapServerInformation.DEFAULTREGKEY));
 }
Example #4
0
 public DirectoryAnalyzer()
 {
     m_impl = new DirectoryAnalyzerImpl();
 }