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

Name Name Name Name

Gets the name of the store.

public : PlatForm::String Name { get; }public string Name { get; }Public ReadOnly Property Name As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The name of the store.

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

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

When this method completes, it returns true if the certificate was successfully deleted; otherwise, it returns false.