ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream.Read C# (CSharp) 메소드

Read() 공개 메소드

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.
리턴 int
        public override int Read(byte[] buffer, int offset, int count)
        {
            throw new NotSupportedException("DeflaterOutputStream Read not supported");
        }