コード例 #1
0
ファイル: CertManager.cs プロジェクト: bmckercher/Windows-SDK
 public CertManager(SharedSecureStorage storage)
 {
     _storage = storage;
 }
コード例 #2
0
ファイル: CertManager.cs プロジェクト: bmckercher/Windows-SDK
 public static async Task UninstallAsync()
 {
     // Windows 10 doesn't support an uninstall method at the moment.  Let's forget about the cert ourselves.
     await SharedSecureStorage.RemoveAsync(StorageKeyNames.RegisteredCertSubject);
 }