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

◆ CheckErrorAndUpdateStatus()

bool System.Net.Sockets.Socket.CheckErrorAndUpdateStatus ( SocketError errorCode)
inlineprivate

Definition at line 3747 of file Socket.cs.

3748 {
3749 if (errorCode == SocketError.Success || errorCode == SocketError.IOPending)
3750 {
3751 return true;
3752 }
3754 return false;
3755 }
void UpdateStatusAfterSocketError(SocketException socketException)
Definition Socket.cs:3726

References System.Net.Sockets.Socket.UpdateStatusAfterSocketError().

Referenced by System.Net.Sockets.Socket.SendToAsync().