1 instantiation of SafeCertStoreHandle
mscorlib (1)
system\security\cryptography\x509certificates\safex509handles.cs (1)
76SafeCertStoreHandle invalidHandle = new SafeCertStoreHandle(IntPtr.Zero);
10 references to SafeCertStoreHandle
mscorlib (10)
system\security\cryptography\x509certificates\safex509handles.cs (2)
74internal static SafeCertStoreHandle InvalidHandle { 76SafeCertStoreHandle invalidHandle = new SafeCertStoreHandle(IntPtr.Zero);
system\security\cryptography\x509certificates\x509certificate.cs (1)
763SafeCertStoreHandle safeCertStoreHandle = X509Utils.ExportCertToMemoryStore(this);
system\security\cryptography\x509certificates\x509utils.cs (7)
312internal static SafeCertStoreHandle ExportCertToMemoryStore(X509Certificate certificate) { 313SafeCertStoreHandle safeCertStoreHandle = SafeCertStoreHandle.InvalidHandle; 349internal static extern void _AddCertificateToStore(SafeCertStoreHandle safeCertStoreHandle, SafeCertContextHandle safeCertContext); 364internal static extern byte[] _ExportCertificatesToBlob(SafeCertStoreHandle safeCertStoreHandle, X509ContentType contentType, IntPtr password); 430private static extern void _OpenX509Store(uint storeType, uint flags, string storeName, ref SafeCertStoreHandle safeCertStoreHandle); 471private static void OpenX509Store(uint storeType, uint flags, string storeName, SafeCertStoreHandle safeCertStoreHandle) {