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; }