X509RevocationMode 列舉

定義

指定用來檢查 X509 憑證是否已被撤銷的模式。

C#
public enum X509RevocationMode
繼承
X509RevocationMode

欄位

名稱 Description
NoCheck 0

不檢查憑證的撤銷狀態。

Offline 2

使用快取憑證撤銷清單 (CRL) 檢查撤銷狀態。

Online 1

使用線上憑證撤銷清單 (CRL) 檢查撤銷狀態。

範例

下列範例會開啟目前使用者的個人憑證存儲,允許使用者選取憑證,然後將憑證和憑證鏈結資訊寫入主控台。 輸出取決於您選取的憑證。

C#
//Output chain information of the selected certificate.
X509Chain ch = new X509Chain();
ch.ChainPolicy.RevocationMode = X509RevocationMode.Online;
ch.Build (certificate);
Console.WriteLine ("Chain Information");
Console.WriteLine ("Chain revocation flag: {0}", ch.ChainPolicy.RevocationFlag);
Console.WriteLine ("Chain revocation mode: {0}", ch.ChainPolicy.RevocationMode);
Console.WriteLine ("Chain verification flag: {0}", ch.ChainPolicy.VerificationFlags);
Console.WriteLine ("Chain verification time: {0}", ch.ChainPolicy.VerificationTime);
Console.WriteLine ("Chain status length: {0}", ch.ChainStatus.Length);
Console.WriteLine ("Chain application policy count: {0}", ch.ChainPolicy.ApplicationPolicy.Count);
Console.WriteLine ("Chain certificate policy count: {0} {1}", ch.ChainPolicy.CertificatePolicy.Count, Environment.NewLine);

備註

這個列舉是用來指定是否發生撤銷檢查,以及是否在線上或離線執行。

注意

在連絡憑證授權單位單位時,指定線上檢查可能會導致長時間延遲。

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1