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

◆ Dispose() [2/2]

override void System.IO.Stream.SyncStream.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.IO.Stream.

Definition at line 327 of file Stream.cs.

328 {
329 lock (_stream)
330 {
331 try
332 {
333 if (disposing)
334 {
335 ((IDisposable)_stream).Dispose();
336 }
337 }
338 finally
339 {
340 base.Dispose(disposing);
341 }
342 }
343 }
readonly Stream _stream
Definition Stream.cs:244

References System.IO.Stream.SyncStream._stream.