System.Net.WebFileStream.Read C# (CSharp) Method

Read() public method

public Read ( byte buffer, int offset, int size ) : int
buffer byte
offset int
size int
return int
        public override int Read(byte[] buffer, int offset, int size)
        {
            CheckAborted();
            try
            {
                return base.Read(buffer, offset, size);
            }
            catch
            {
                CheckAborted();
                throw;
            }
        }