terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ CloseSocket()

void System.Net.HttpConnection.CloseSocket ( )
inlineprivate

Definition at line 443 of file HttpConnection.cs.

444 {
445 global::System.Net.Sockets.Socket socket = this.sock;
446 if (socket != null)
447 {
448 socket.Close();
449 this.RemoveConnection();
450 return;
451 }
452 }
global::System.Net.Sockets.Socket sock

References System.Net.HttpConnection.RemoveConnection(), and System.Net.HttpConnection.sock.

Referenced by System.Net.HttpConnection.OnReadInternal(), and System.Net.HttpConnection.OnTimeout().