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
19 changes: 17 additions & 2 deletions xml/System.Net.Http/StreamContent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,15 @@
<Docs>
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>
<format type="text/markdown"><![CDATA[

## Remarks

The <xref:System.Net.Http.StreamContent> object calls <xref:System.IO.Stream.Dispose> on the provided <xref:System.IO.Stream> object when <xref:System.Net.Http.StreamContent.Dispose%2A?displayProperty=nameWithType> is called.

]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
Expand Down Expand Up @@ -98,7 +106,14 @@
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
<param name="bufferSize">The size, in bytes, of the buffer for the <see cref="T:System.Net.Http.StreamContent" />.</param>
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Net.Http.StreamContent> object calls <xref:System.IO.Stream.Dispose> on the provided <xref:System.IO.Stream> object when <xref:System.Net.Http.StreamContent.Dispose%2A?displayProperty=nameWithType> is called.

]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="bufferSize" /> was less than or equal to zero.</exception>
</Docs>
Expand Down