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

◆ X509Store() [7/9]

System.Security.Cryptography.X509Certificates.X509Store.X509Store ( string storeName,
StoreLocation storeLocation )
inline

Definition at line 91 of file X509Store.cs.

92 {
93 if (storeLocation != StoreLocation.CurrentUser && storeLocation != StoreLocation.LocalMachine)
94 {
95 throw new ArgumentException(System.SR.Format(System.SR.Arg_EnumIllegalVal, "storeLocation"));
96 }
97 Location = storeLocation;
98 Name = storeName;
99 }
static string Arg_EnumIllegalVal
Definition SR.cs:144
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7

References System.SR.Arg_EnumIllegalVal, System.SR.Format(), System.Security.Cryptography.X509Certificates.X509Store.Location, and System.Security.Cryptography.X509Certificates.X509Store.Name.