Patcher.IO.CustomDeflateStream.Read C# (CSharp) Method

Read() public method

public Read ( byte array, int offset, int count ) : int
array byte
offset int
count int
return int
        public override int Read(byte[] array, int offset, int count)
        {
            int bytesRead = base.Read(array, offset, count);
            position += bytesRead;
            return bytesRead;
        }