Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions xml/System.Net.Http/ByteArrayContent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,14 @@
<Docs>
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Net.Http.ByteArrayContent> class does not internally copy the provided byte array but keeps a reference to it instead. Callers should not modify the data in the array until the content is sent.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

until the content is sent

"until after the content is sent"

]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is <see langword="null" />.</exception>
</Docs>
</Member>
Expand Down Expand Up @@ -122,7 +129,9 @@
<format type="text/markdown"><![CDATA[
## Remarks
Only the range specified by the `offset` parameter and the `count` parameter is used as content. Syntax
The <xref:System.Net.Http.ByteArrayContent> class does not internally copy the provided byte array but keeps a reference to it instead. Callers should not modify the data in the array until the content is sent.
Only the range specified by the `offset` parameter and the `count` parameter is used as content.
]]></format>
</remarks>
Expand Down