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="destination">The stream to which the contents of the current stream will be copied.</param>
2219
+
<paramname="bufferSize">The size of the buffer. This value must be greater than zero.</param>
2220
+
<summary>Reads the bytes from the current stream and writes them to another stream, using a specified buffer size. Both streams positions are advanced by the number of bytes copied.</summary>
2221
+
<remarks>Copying begins at the current position in the current stream, and does not reset the position of the destination stream after the copy operation is complete.</remarks>
2222
2222
</Docs>
2223
2223
</Member>
2224
2224
<MemberMemberName="CopyToAsync">
@@ -2259,7 +2259,7 @@ See <xref:System.IO.Stream.Close?displayProperty=nameWithType> for more informat
2259
2259
</Parameters>
2260
2260
<Docs>
2261
2261
<paramname="destination">The stream to which the contents of the current file stream will be copied.</param>
2262
-
<paramname="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default size is 81920.</param>
2262
+
<paramname="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero.</param>
2263
2263
<paramname="cancellationToken">The token to monitor for cancellation requests. The default value is <seecref="P:System.Threading.CancellationToken.None" />.</param>
2264
2264
<summary>Asynchronously reads the bytes from the current file stream and writes them to another stream, using a specified buffer size and cancellation token.</summary>
2265
2265
<returns>A task that represents the asynchronous copy operation.</returns>
0 commit comments