UserCertificateStore
UserCertificateStore
UserCertificateStore
UserCertificateStore
Class
Definition
Represents a user certificate store.
public : sealed class UserCertificateStore : IUserCertificateStorepublic sealed class UserCertificateStore : IUserCertificateStorePublic NotInheritable Class UserCertificateStore Implements IUserCertificateStore// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 Anniversary Edition (introduced v10.0.14393.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v3)
|
Properties
Methods
RequestAddAsync(Certificate) RequestAddAsync(Certificate) RequestAddAsync(Certificate) RequestAddAsync(Certificate)
Requests to add a certificate to the store.
public : IAsyncOperation<PlatForm::Boolean> RequestAddAsync(Certificate certificate)public IAsyncOperation<bool> RequestAddAsync(Certificate certificate)Public Function RequestAddAsync(certificate As Certificate) As IAsyncOperation( Of bool )// You can use this method in JavaScript.
Parameters
- certificate
- Certificate Certificate Certificate Certificate
The certificate to add.
Returns
IAsyncOperation<PlatForm::Boolean>
IAsyncOperation<bool>
IAsyncOperation<bool>
IAsyncOperation<bool>
When this method completes, it returns true if the certificate was successfully added; otherwise, it returns false.
RequestDeleteAsync(Certificate) RequestDeleteAsync(Certificate) RequestDeleteAsync(Certificate) RequestDeleteAsync(Certificate)
Requests to delete a certificate from the store.
public : IAsyncOperation<PlatForm::Boolean> RequestDeleteAsync(Certificate certificate)public IAsyncOperation<bool> RequestDeleteAsync(Certificate certificate)Public Function RequestDeleteAsync(certificate As Certificate) As IAsyncOperation( Of bool )// You can use this method in JavaScript.
Parameters
- certificate
- Certificate Certificate Certificate Certificate
The certificate to delete.
Returns
IAsyncOperation<PlatForm::Boolean>
IAsyncOperation<bool>
IAsyncOperation<bool>
IAsyncOperation<bool>
When this method completes, it returns true if the certificate was successfully deleted; otherwise, it returns false.