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

◆ Verify()

bool System.Security.Cryptography.X509Certificates.X509Certificate2.Verify ( )
inline

Definition at line 592 of file X509Certificate2.cs.

593 {
595 using X509Chain x509Chain = new X509Chain();
596 bool result = x509Chain.Build(this, throwOnException: false);
597 for (int i = 0; i < x509Chain.ChainElements.Count; i++)
598 {
599 x509Chain.ChainElements[i].Certificate.Dispose();
600 }
601 return result;
602 }

References System.Runtime.Serialization.Dictionary, and System.Security.Cryptography.X509Certificates.X509Certificate.ThrowIfInvalid().