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

◆ Accessible

bool System.Security.Cryptography.CspKeyContainerInfo.Accessible
get

Definition at line 13 of file CspKeyContainerInfo.cs.

14 {
15 get
16 {
17 object obj = ReadKeyParameterSilent(6, throwOnNotFound: false);
18 if (obj == null)
19 {
20 return false;
21 }
22 return (bool)obj;
23 }
24 }
object ReadKeyParameterSilent(int keyParam, bool throwOnNotFound=true)