System.IO.Stream.SyncStream.Read C# (CSharp) Method

Read() public method

public Read ( [ bytes, int offset, int count ) : int
bytes [
offset int
count int
return int
            public override int Read([In, Out]byte[] bytes, int offset, int count)
            {
                lock(_stream)
                    return _stream.Read(bytes, offset, count);
            }