Freigeben über


ServicePointManager.CheckCertificateRevocationList-Eigenschaft

Ruft einen Boolean-Wert ab, der angibt, ob das Zertifikat anhand der Sperrliste der Zertifizierungsstelle überprüft wird, oder legt diesen fest.

Namespace: System.Net
Assembly: System (in system.dll)

Syntax

'Declaration
Public Shared Property CheckCertificateRevocationList As Boolean
'Usage
Dim value As Boolean

value = ServicePointManager.CheckCertificateRevocationList

ServicePointManager.CheckCertificateRevocationList = value
public static bool CheckCertificateRevocationList { get; set; }
public:
static property bool CheckCertificateRevocationList {
    bool get ();
    void set (bool value);
}
/** @property */
public static boolean get_CheckCertificateRevocationList ()

/** @property */
public static void set_CheckCertificateRevocationList (boolean value)
public static function get CheckCertificateRevocationList () : boolean

public static function set CheckCertificateRevocationList (value : boolean)

Eigenschaftenwert

true, wenn die Zertifikatssperrliste überprüft wird, andernfalls false.

Hinweise

Wenn CheckCertificateRevocationList den Wert true aufweist, wird das Zertifikat während der Zertifikatsvalidierung anhand der Sperrliste der Zertifizierungsstelle überprüft. Der Standardwert ist false.

Beispiel

Im folgenden Codebeispiel wird diese Eigenschaft festgelegt.

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;
ServicePointManager.set_UseNagleAlgorithm(true);
ServicePointManager.set_Expect100Continue(true);
ServicePointManager.set_CheckCertificateRevocationList(true);
ServicePointManager.set_DefaultConnectionLimit(
    ServicePointManager.DefaultPersistentConnectionLimit);

.NET Framework-Sicherheit

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1

Siehe auch

Referenz

ServicePointManager-Klasse
ServicePointManager-Member
System.Net-Namespace