public void SetDefaultCertificate(StoreLocation storeLocation, StoreName storeName, X509FindType findType, Object findValue) { #if !MOBILE DefaultCertificate = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, findType, findValue); #else throw new NotImplementedException(); #endif }
public void SetScopedCertificate(StoreLocation storeLocation, StoreName storeName, X509FindType findType, Object findValue, Uri targetService) { #if !MOBILE ScopedCertificates [targetService] = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, findType, findValue); #else throw new NotImplementedException(); #endif }
public void SetCertificate( string subjectName, StoreLocation storeLocation, StoreName storeName) { #if !MOBILE certificate = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, X509FindType.FindBySubjectName, subjectName); #else throw new NotImplementedException(); #endif }
public void SetDefaultCertificate(StoreLocation storeLocation, StoreName storeName, X509FindType findType, Object findValue) { DefaultCertificate = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, findType, findValue); }
public void SetScopedCertificate(StoreLocation storeLocation, StoreName storeName, X509FindType findType, Object findValue, Uri targetService) { ScopedCertificates [targetService] = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, findType, findValue); }
public void SetCertificate( string subjectName, StoreLocation storeLocation, StoreName storeName) { certificate = ConfigUtil.CreateCertificateFrom(storeLocation, storeName, X509FindType.FindBySubjectName, subjectName); }