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

◆ Dispose() [2/2]

override void System.IO.Compression.GZipStream.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.IO.Stream.

Definition at line 139 of file GZipStream.cs.

140 {
141 try
142 {
143 if (disposing && _deflateStream != null)
144 {
146 }
147 _deflateStream = null;
148 }
149 finally
150 {
151 base.Dispose(disposing);
152 }
153 }
override void Dispose(bool disposing)

References System.IO.Compression.GZipStream._deflateStream, and System.IO.Compression.DeflateStream.Dispose().