13590--北极燕鸥


   博采众长,信誉卓著

导航

查看数字证书

Posted on 2007-05-28 15:01  北极燕鸥  阅读(730)  评论(0编辑  收藏  举报
   X509Store store = new X509Store(StoreName.CertificateAuthority, StoreLocation.CurrentUser);
            store.Open(OpenFlags.ReadOnly );
            X509Certificate2Collection certs = X509Certificate2UI.SelectFromCollection(store.Certificates, "MyTitle", "MyMessage", X509SelectionFlag.SingleSelection);
            if (1 == certs.Count)
            {
                Console.WriteLine("您选择了 \"{0}\"",
                certs[0].SubjectName.Name);
            }
            else Console.WriteLine("您取消了我的对话框!");