ServicePointManager.CheckCertificateRevocationList Свойство

Определение

Возвращает или задает значение Boolean, указывающее, проверяется ли сертификат по списку отзыва сертификатов.

public:
 static property bool CheckCertificateRevocationList { bool get(); void set(bool value); };
public static bool CheckCertificateRevocationList { get; set; }
static member CheckCertificateRevocationList : bool with get, set
Public Shared Property CheckCertificateRevocationList As Boolean

Значение свойства

Значение true, если проверяется список отзыва сертификатов; в противном случае — false.

Примеры

В следующем примере кода задается это свойство.

ServicePointManager::UseNagleAlgorithm = true;
ServicePointManager::Expect100Continue = true;
ServicePointManager::CheckCertificateRevocationList = true;
ServicePointManager::DefaultConnectionLimit = ServicePointManager::DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = true;
ServicePointManager.Expect100Continue = true;
ServicePointManager.CheckCertificateRevocationList = true;
ServicePointManager.DefaultConnectionLimit = ServicePointManager.DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = True
ServicePointManager.Expect100Continue = True
ServicePointManager.CheckCertificateRevocationList = True
ServicePointManager.DefaultConnectionLimit = _
    ServicePointManager.DefaultPersistentConnectionLimit

Комментарии

CheckCertificateRevocationList Если имеет значение true, сертификат проверяется по списку отзыва центра сертификации в рамках процесса проверки сертификата. Значение по умолчанию — false.

Применяется к

См. также раздел