ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream.Read C# (CSharp) Méthode

Read() public méthode

Read a block of bytes from stream
Any access
public Read ( byte buffer, int offset, int count ) : int
buffer byte The buffer to store read data in.
offset int The offset to start storing at.
count int The maximum number of bytes to read.
Résultat int
        public override int Read(byte[] buffer, int offset, int count)
        {
            throw new NotSupportedException("DeflaterOutputStream Read not supported");
        }