You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<paramname="cancellationToken">To be added.</param>
1182
-
<summary>To be added.</summary>
1183
-
<returns>To be added.</returns>
1180
+
<paramname="buffer">When the asynchronous method finishes, this memory region contains all the bytes read from the unmanaged memory stream.</param>
1181
+
<paramname="cancellationToken">The token to monitor for cancellation requests. The default value is <seecref="P:System.Threading.CancellationToken.None" />.</param>
1182
+
<summary>Asynchronously reads the unmanaged memory stream bytes into the memory region.</summary>
1183
+
<returns>A task that represents the asynchronous read operation, and wraps the total number of bytes read into the buffer.</returns>
1184
1184
<remarks>To be added.</remarks>
1185
1185
</Docs>
1186
1186
</Member>
@@ -1230,9 +1230,7 @@
1230
1230
<paramname="offset">The byte offset in <paramrefname="buffer" /> at which to begin writing data from the stream.</param>
1231
1231
<paramname="count">The maximum number of bytes to read.</param>
1232
1232
<paramname="cancellationToken">The token to monitor for cancellation requests. The default value is <seecref="P:System.Threading.CancellationToken.None" />.</param>
1233
-
<summary>Asynchronously reads the specified number of bytes into the specified array.
1234
-
1235
-
Available starting in .NET Framework 4.6</summary>
1233
+
<summary>Asynchronously reads the specified number of bytes into the specified array.</summary>
1236
1234
<returns>A task that represents the asynchronous read operation. The value of the <paramrefname="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
<paramname="cancellationToken">To be added.</param>
1579
-
<summary>To be added.</summary>
1580
-
<returns>To be added.</returns>
1575
+
<paramname="buffer">The buffer to write data from.</param>
1576
+
<paramname="cancellationToken">The token to monitor for cancellation requests. The default value is <seecref="P:System.Threading.CancellationToken.None" />.</param>
1577
+
<summary>Asynchronously writes a span of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
1578
+
<returns>A task that represents the asynchronous write operation.</returns>
1581
1579
<remarks>To be added.</remarks>
1582
1580
</Docs>
1583
1581
</Member>
@@ -1627,9 +1625,7 @@
1627
1625
<paramname="offset">The zero-based byte offset in <paramrefname="buffer" /> from which to begin copying bytes to the stream.</param>
1628
1626
<paramname="count">The maximum number of bytes to write.</param>
1629
1627
<paramname="cancellationToken">The token to monitor for cancellation requests. The default value is <seecref="P:System.Threading.CancellationToken.None" />.</param>
1630
-
<summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.
1631
-
1632
-
Available starting in .NET Framework 4.6</summary>
1628
+
<summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
1633
1629
<returns>A task that represents the asynchronous write operation.</returns>
0 commit comments