Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Remove()

void System.Security.Cryptography.X509Certificates.X509Store.Remove ( X509Certificate2 certificate)
inline

Definition at line 160 of file X509Store.cs.

161 {
162 if (certificate == null)
163 {
164 throw new ArgumentNullException("certificate");
165 }
166 if (_storePal == null)
167 {
168 throw new CryptographicException(System.SR.Cryptography_X509_StoreNotOpen);
169 }
170 if (certificate.Pal != null)
171 {
172 _storePal.Remove(certificate.Pal);
173 }
174 }
static string Cryptography_X509_StoreNotOpen
Definition SR.cs:102
Definition SR.cs:7
void Remove(ICertificatePal cert)

References System.Security.Cryptography.X509Certificates.X509Store._storePal, System.SR.Cryptography_X509_StoreNotOpen, System.Security.Cryptography.X509Certificates.X509Certificate2.Pal, and Internal.Cryptography.Pal.IStorePal.Remove().

Referenced by System.Security.Cryptography.X509Certificates.X509Store.AddRange(), and System.Security.Cryptography.X509Certificates.X509Store.RemoveRange().