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

◆ AbortConnect()

void System.Net.FtpControlStream.AbortConnect ( )
inlinepackage

Definition at line 127 of file FtpControlStream.cs.

128 {
130 if (dataSocket != null)
131 {
132 try
133 {
134 dataSocket.Close();
135 }
136 catch (ObjectDisposedException)
137 {
138 }
139 }
140 }

References System.Net.FtpControlStream._dataSocket.

Referenced by System.Net.FtpWebRequest.TimerCallback().