Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ StoreHandle

IntPtr System.Security.Cryptography.X509Certificates.X509Store.StoreHandle
get

Definition at line 9 of file X509Store.cs.

10 {
11 get
12 {
13 if (_storePal == null)
14 {
15 throw new CryptographicException(System.SR.Cryptography_X509_StoreNotOpen);
16 }
17 if (_storePal.SafeHandle == null)
18 {
19 return IntPtr.Zero;
20 }
21 return _storePal.SafeHandle.DangerousGetHandle();
22 }
23 }
static string Cryptography_X509_StoreNotOpen
Definition SR.cs:102
Definition SR.cs:7