Пример #1
0
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates by downloading
 /// partial CRLs. This is the default.
 /// </summary>
 public static void SetPartitionedCrlRevocationChecker()
 {
     _currentChecker = PartitionedCrlRevocationChecker.Instance;
 }
Пример #2
0
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates by downloading
 /// the full CRL.
 /// </summary>
 public static void SetFullCrlRevocationChecker()
 {
     _currentChecker = FullCrlRevocationChecker.Instance;
 }
Пример #3
0
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates using OCSP.
 /// </summary>
 public static void SetOcspRevocationChecker()
 {
     _currentChecker = new OcspCertificateRevocationChecker();
 }
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates by downloading
 /// partial CRLs. This is the default.
 /// </summary>
 public static void SetPartitionedCrlRevocationChecker()
 {
     _currentChecker = PartitionedCrlRevocationChecker.Instance;
 }
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates using OCSP.
 /// </summary>
 public static void SetOcspRevocationChecker()
 {
     _currentChecker = new OcspCertificateRevocationChecker();
 }
 /// <summary>
 /// Instructs OOAPI to check revocation of certificates by downloading
 /// the full CRL.
 /// </summary>
 public static void SetFullCrlRevocationChecker()
 {
     _currentChecker = FullCrlRevocationChecker.Instance;
 }