Store.Remove method

[The Remove method is available for use in the operating systems specified in the Requirements section. Instead, use the X509Store Class in the System.Security.Cryptography.X509Certificates namespace.]

The Remove method removes a certificate from an open certificate store. This method can only be used with a store that has been opened with read/write permission.

Syntax

Store.Remove( _
  ByVal Certificate _
)

Parameters

Certificate [in]

Expression that resolves to an instance of a Certificate object to be removed from the store.

Return value

This method does not return a value.

Remarks

Important

When this method is called from a web script, the script needs to delete digital certificates from the local computer. Allowing untrusted websites to delete digital certificates is a security risk. A dialog box that asks whether the website can delete certificates appears when this method is first called. If you allow the application to delete certificates and select "Do not show this dialog box again," the dialog box will no longer appear for any script that deletes certificates within that domain. However, scripts outside that domain that attempt to delete certificates will still cause this dialog box to appear. If you do not allow the script to delete certificates and select "Do not show this dialog box again," scripts within that domain will automatically be refused the ability to delete certificates.

 

When you delete a certificate from a store, you should first delete the private key associated with the certificate.

If the store is not open with read/write permission, this method fails. Although this method can be used with memory stores, any changes made to a memory store are not persisted when the store is closed.

Requirements

Requirement Value
Redistributable
CAPICOM 2.0 or later on Windows Server 2003 and Windows XP
DLL
Capicom.dll

See also

Store

Cryptography Objects