Problems with X509Store Certificates.Find FindByThumbprint

后端 未结 14 2144
醉话见心
醉话见心 2020-12-04 20:56

I\'m having a problem when I use the method X509Store.Certificates.Find

public static X509Certificate2 FromStore(StoreName storeName, 
                  


        
14条回答
  •  误落风尘
    2020-12-04 21:08

    var results = store.Certificates.Find(findType, findType, true);
    

    I think you mean the 2nd param to be "findValue".

提交回复
热议问题