Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatic port of System.Buffers docs #4882

Merged
merged 1 commit into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions xml/System.Buffers/ReadOnlySequence`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -351,10 +351,11 @@ The consumer is expected to manage the lifetime of memory until <see cref="T:Sys
<Parameter Name="position" Type="System.SequencePosition" Index="0" FrameworkAlternate="net-5.0" />
</Parameters>
<Docs>
<param name="position">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<param name="position">The <see cref="T:System.SequencePosition" /> of which to get the offset.</param>
<summary>Returns the offset of a <paramref name="position" /> within this sequence from the start.</summary>
<returns>The offset from the start of the sequence.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentOutOfRangeException">The position is out of range.</exception>
</Docs>
</Member>
<Member MemberName="GetPosition">
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Buffers/SequenceReader`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ This method copies a fixed amount of data out of the sequence if possible. It do
<param name="delimiter">The delimiter to look for.</param>
<param name="advancePastDelimiter">
<see langword="true" /> to move past the <paramref name="delimiter" /> if found.</param>
<param name="span">To be added.</param>
<param name="span">The read data, if any.</param>
<summary>Try to read everything up to the given <paramref name="delimiter" />.</summary>
<returns>
<see langword="true" /> if the <paramref name="delimiter" /> was found; otherwise, <see langword="false" />.</returns>
Expand Down