Ionic.Zlib.ParallelDeflateOutputStream.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

Dispose the object

Because ParallelDeflateOutputStream is IDisposable, the application must call this method when finished using the instance.

This method is generally called implicitly upon exit from a using scope in C# (Using in VB).

public Dispose ( ) : void
리턴 void
        new public void Dispose()
        {
            TraceOutput(TraceBits.Lifecycle, "Dispose  {0:X8}", this.GetHashCode());
            _pool = null;
            Dispose(true);
        }

Same methods

ParallelDeflateOutputStream::Dispose ( bool disposing ) : void