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

◆ CheckCertRevocationStatus

virtual bool System.Net.Security.SslStream.CheckCertRevocationStatus
get

Definition at line 143 of file SslStream.cs.

144 {
145 get
146 {
147 if (_context != null)
148 {
149 return _context.CheckCertRevocationStatus != X509RevocationMode.NoCheck;
150 }
151 return false;
152 }
153 }