閱讀英文

共用方式為


X509SelectionFlag 列舉

定義

指定使用 SelectFromCollection 方法要求的選取型別。

public enum X509SelectionFlag
繼承
X509SelectionFlag

欄位

MultiSelection 1

多重選取。 使用者可使用 SHIFT 或 CRTL 鍵選取多個 X.509 憑證。

SingleSelection 0

單一選取。 UI 可讓使用者選取一個 X.509 憑證。

範例

下列程式代碼範例示範如何搭配 X509Certificate2UI.SelectFromCollection 方法使用選取旗標。 此程式代碼範例是針對 類別提供的較大範例的 X509Store 一部分。 較大的範例會開啟目前使用者的個人證書存儲,允許用戶選取憑證,然後將憑證和憑證鏈結資訊寫入控制台。 輸出取決於用戶選取的憑證。

    //Create new X509 store from local certificate store.
    X509Store store = new X509Store("MY", StoreLocation.CurrentUser);
    store.Open(OpenFlags.OpenExistingOnly | OpenFlags.ReadWrite);

    //Output store information.
    Console.WriteLine ("Store Information");
    Console.WriteLine ("Number of certificates in the store: {0}", store.Certificates.Count);
    Console.WriteLine ("Store location: {0}", store.Location);
    Console.WriteLine ("Store name: {0} {1}", store.Name, Environment.NewLine);

    //Put certificates from the store into a collection so user can select one.
    X509Certificate2Collection fcollection = (X509Certificate2Collection)store.Certificates;
    X509Certificate2Collection collection = X509Certificate2UI.SelectFromCollection(fcollection, "Select an X509 Certificate", "Choose a certificate to examine.", X509SelectionFlag.SingleSelection);
    X509Certificate2 certificate = collection[0];
    X509Certificate2UI.DisplayCertificate(certificate);

備註

此旗標代表使用 X509Certificate2UI.SelectFromCollection 方法的單一或多個憑證選取專案。

適用於

產品 版本
.NET 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
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9