public CachedLdapCrlDownloader()
 {
     int timeout = 30;
     if (Properties.IsDefined(CrlCacheTimeoutLdap))
     {
         timeout = int.Parse(Properties.Get(CrlCacheTimeoutLdap));
     }
     _crlCache = new CrlCache(timeout);
 }
Ejemplo n.º 2
0
        public CachedLdapCrlDownloader()
        {
            int timeout = 30;

            if (Properties.IsDefined(CrlCacheTimeoutLdap))
            {
                timeout = int.Parse(Properties.Get(CrlCacheTimeoutLdap));
            }
            _crlCache = new CrlCache(timeout);
        }
 internal CachedLdapCrlDownloader(CrlCache crlCache)
 {
     _crlCache = crlCache;
 }
Ejemplo n.º 4
0
 internal CachedLdapCrlDownloader(CrlCache crlCache)
 {
     _crlCache = crlCache;
 }