Amazon.Runtime.Internal.Util.WrapperStream.Read C# (CSharp) Метод

Read() публичный Метод

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
public Read ( byte buffer, int offset, int count ) : int
buffer byte /// An array of bytes. When this method returns, the buffer contains the specified /// byte array with the values between offset and (offset + count - 1) replaced /// by the bytes read from the current source. ///
offset int /// The zero-based byte offset in buffer at which to begin storing the data read /// from the current stream. ///
count int /// The maximum number of bytes to be read from the current stream. ///
Результат int
        public override int Read(byte[] buffer, int offset, int count)
        {
            return BaseStream.Read(buffer, offset, count);
        }