System.util.zlib.ZOutputStream.End C# (CSharp) Method

End() public method

public End ( ) : void
return void
		public virtual void End()
		{
			if (z == null)
				return;
			if (compress)
				z.deflateEnd();
			else
				z.inflateEnd();
			z.free();
			z = null;
		}