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

◆ RemoteIdentity

virtual IIdentity System.Net.Security.NegotiateStream.RemoteIdentity
get

Definition at line 177 of file NegotiateStream.cs.

178 {
179 get
180 {
181 IIdentity identity = _remoteIdentity;
182 if (identity == null)
183 {
184 ThrowIfFailed(authSuccessCheck: true);
185 identity = (_remoteIdentity = NegotiateStreamPal.GetIdentity(_context));
186 }
187 return identity;
188 }
189 }
void ThrowIfFailed(bool authSuccessCheck)