System.util.zlib.ZStream.deflateEnd C# (CSharp) Method

deflateEnd() public method

public deflateEnd ( ) : int
return int
        public int deflateEnd(){
            if(dstate==null) return Z_STREAM_ERROR;
            int ret=dstate.deflateEnd();
            dstate=null;
            return ret;
        }
        public int deflateParams(int level, int strategy){

Usage Example

Esempio n. 1
0
 virtual public void End()
 {
     if (z == null)
     {
         return;
     }
     z.deflateEnd();
     z.free();
     z = null;
 }
All Usage Examples Of System.util.zlib.ZStream::deflateEnd