Reads uncompressed data into an array of bytes
[Visual Basic]
Overrides Public Function Read( _
   ByVal buf As Byte(), _
   ByVal offset As Integer, _
   ByVal len As Integer _
) As Integer
[C#]
public override int Read(
   byte[] buf,
   int offset,
   int len
);
Parameters
buf
the buffer to read uncompressed data into
offset
the offset indicating where the data should be placed
len
the number of uncompressed bytes to be read
See Also
GZipInputStream Class | GZipInputStream Members | ICSharpCode.SharpZipLib.GZip Namespace