CmisSync.Lib.Streams.StreamWrapper.Read C# (CSharp) Method

Read() public method

Read the specified buffer, offset and count.
public Read ( byte buffer, int offset, int count ) : int
buffer byte /// Buffer passed to the wrapped instance. ///
offset int /// Offset passed to the wrapped instance. ///
count int /// Count passed to the wrapped instance. ///
return int
        public override int Read(byte[] buffer, int offset, int count) {
            return this.Stream.Read(buffer, offset, count);
        }