diff --git a/xml/System.IO/Stream.xml b/xml/System.IO/Stream.xml
index 6759890ec01..c176dcd54df 100644
--- a/xml/System.IO/Stream.xml
+++ b/xml/System.IO/Stream.xml
@@ -1992,6 +1992,32 @@
Method
+
+ System.Int32
+
+
+
+
+
+ A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.
+ When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
+ The total number of bytes read into the buffer. This can be less than the size of the buffer if that many bytes are not currently available, or zero (0) if the buffer's length is zero or the end of the stream has been reached.
+
+ property to determine whether the current instance supports reading. Use the method to read asynchronously from the current stream.
+
+ Implementations of this method read a maximum of `buffer.Length` bytes from the current stream and store them in `buffer`. The current position within the stream is advanced by the number of bytes read; however, if an exception occurs, the current position within the stream remains unchanged. Implementations return the number of bytes read. If more than zero bytes are requested, the implementation will not complete the operation until at least one byte of data can be read (if zero bytes were requested, some implementations may similarly not complete until at least one byte is available, but no data will be consumed from the stream in such a case). returns 0 only if zero bytes were requested or when there is no more data in the stream and no more is expected (such as a closed socket or end of file). An implementation is free to return fewer bytes than requested even if the end of the stream has not been reached.
+
+ Use for reading primitive data types.
+
+ ]]>
+
+ An I/O error occurred during reading.
+ The stream does not support reading.
+ The stream has been disposed.
+
System.Runtime
4.2.1.0
@@ -2018,30 +2044,8 @@
[<System.Runtime.CompilerServices.NullableContext(0)>]
-
- System.Int32
-
-
-
-
-
- A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.
- When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
- The total number of bytes read into the buffer. This can be less than the size of the buffer if that many bytes are not currently available, or zero (0) if the buffer's length is zero or the end of the stream has been reached.
-
- property to determine whether the current instance supports reading. Use the method to read asynchronously from the current stream.
-
- Implementations of this method read a maximum of `buffer.Length` bytes from the current stream and store them in `buffer`. The current position within the stream is advanced by the number of bytes read; however, if an exception occurs, the current position within the stream remains unchanged. Implementations return the number of bytes read. If more than zero bytes are requested, the implementation will not complete the operation until at least one byte of data can be read (if zero bytes were requested, some implementations may similarly not complete until at least one byte is available, but no data will be consumed from the stream in such a case). returns 0 only if zero bytes were requested or when there is no more data in the stream and no more is expected (such as a closed socket or end of file). An implementation is free to return fewer bytes than requested even if the end of the stream has not been reached.
-
- Use for reading primitive data types.
-
- ]]>
-
-
+