public ISuperLoggingConnection GetSuperLoggingConnection ()
 {
     if (_superLoggingConnection == null) {
         _superLoggingConnection = new SuperLoggingConnection ();
         _superLoggingConnection.openA (server, Domain, bindDN, password);
     }
     return _superLoggingConnection;
 }
 public ISuperLoggingConnection GetSuperLoggingConnection()
 {
     if (_superLoggingConnection == null)
     {
         _superLoggingConnection = new SuperLoggingConnection();
         _superLoggingConnection.openA(server, Domain, bindDN, password);
     }
     return(_superLoggingConnection);
 }