NetWrok.HTTP.Zlib.ZlibBaseStream.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public override void Close()
        {
            try
            {
                try
                {
                    finish();
                }
                catch (System.IO.IOException)
                {
                    // swallow exceptions?
                }
            }
            finally
            {
                end();
                if (!_leaveOpen) _stream.Close();
                _stream = null;
            }
        }