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

◆ IsLogonDeniedException()

static bool System.Net.Security.NegotiateStream.IsLogonDeniedException ( Exception exception)
inlinestaticprivate

Definition at line 1021 of file NegotiateStream.cs.

1022 {
1023 if (exception is Win32Exception ex)
1024 {
1025 return ex.NativeErrorCode == 21;
1026 }
1027 return false;
1028 }

References System.exception.

Referenced by System.Net.Security.NegotiateStream.SendAuthResetSignalAndThrowAsync< TAdapter >().