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

◆ IsAuthenticatedCore

bool System.Net.Security.NegotiateStream.IsAuthenticatedCore
getprivate

Definition at line 63 of file NegotiateStream.cs.

64 {
65 [MemberNotNullWhen(true, "_context")]
66 get
67 {
68 if (_context != null && HandshakeComplete && _exception == null)
69 {
70 return _remoteOk;
71 }
72 return false;
73 }
74 }

Referenced by System.Net.Security.NegotiateStream.ThrowIfFailed().