Org.BouncyCastle.Utilities.Zlib.ZStream.inflateInit C# (CSharp) Method

inflateInit() public method

public inflateInit ( ) : int
return int
        public int inflateInit(){
            return inflateInit(DEF_WBITS);
        }
        public int inflateInit(bool nowrap){

Same methods

ZStream::inflateInit ( bool nowrap ) : int
ZStream::inflateInit ( int w ) : int
ZStream::inflateInit ( int w, bool nowrap ) : int

Usage Example

Ejemplo n.º 1
0
		public CompressedStream (Stream baseStream)
		{
			BaseStream = baseStream;

			zOut = new ZStream ();
			zOut.deflateInit (5, true);
			zOut.next_out = new byte[4096];

			zIn = new ZStream ();
			zIn.inflateInit (true);
			zIn.next_in = new byte[4096];
		}
All Usage Examples Of Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit