Org.BouncyCastle.Utilities.Zlib.ZStream.deflateEnd C# (CSharp) Méthode

deflateEnd() public méthode

public deflateEnd ( ) : int
Résultat 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

 public void End()
 {
     if (z == null)
     {
         return;
     }
     z.deflateEnd();
     z.free();
     z = null;
 }
All Usage Examples Of Org.BouncyCastle.Utilities.Zlib.ZStream::deflateEnd