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

◆ IsMutuallyAuthenticated

override bool System.Net.Security.SslStream.IsMutuallyAuthenticated
get

Definition at line 106 of file SslStream.cs.

107 {
108 get
109 {
110 if (IsAuthenticated && (_context.IsServer ? _context.LocalServerCertificate : _context.LocalClientCertificate) != null)
111 {
113 }
114 return false;
115 }
116 }
override bool IsAuthenticated
Definition SslStream.cs:95