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

설명

이 이 CheckCertificateRevocationListtrue인증서 유효성 검사 프로세스의 일부로 인증서가 인증 기관 해지 목록에 대해 검사됩니다. 기본값은 false합니다.

적용 대상

추가 정보