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

◆ Dispose() [2/2]

override void System.Net.FtpDataStream.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.IO.Stream.

Definition at line 88 of file FtpDataStream.cs.

89 {
90 try
91 {
92 if (disposing)
93 {
94 ((ICloseEx)this).CloseEx(CloseExState.Normal);
95 }
96 else
97 {
98 ((ICloseEx)this).CloseEx(CloseExState.Abort | CloseExState.Silent);
99 }
100 }
101 finally
102 {
103 base.Dispose(disposing);
104 }
105 }