CmisSync.Lib.Streams.ForwardReadingStream.Read C# (CSharp) 메소드

Read() 공개 메소드

Read the specified buffer, offset and count.
public Read ( byte buffer, int offset, int count ) : int
buffer byte /// Buffer. ///
offset int /// Offset. ///
count int /// Count. ///
리턴 int
        public override int Read(byte[] buffer, int offset, int count) {
            int read = base.Read(buffer, offset, count);
            this.pos += read;
            return read;
        }
    }
ForwardReadingStream