X509Store在Xamarin.Android中为空

时间:2018-07-26 20:00:25

标签: c# xamarin.android x509certificate2

我的Android设备中具有以下用户凭据:

enter image description here

我尝试在X509StoreStoreName的每种组合中都在StoreLocation中找到它们,但没有找到

using (var store = new X509Store(StoreName.TrustedPeople, StoreLocation.CurrentUser))
{
   store.Open(OpenFlags.ReadOnly);
   foreach (var item in store.Certificates)
   {
     //do your job
   }
}

我需要验证是否已安装特定证书。

有人知道如何访问该列表吗?

0 个答案:

没有答案
相关问题