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
Copy file name to clipboardExpand all lines: xml/System.Buffers/ArrayBufferWriter`1.xml
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -227,9 +227,8 @@ This method never returns <xref:System.Memory%601.Empty?displayProperty=nameWith
227
227
<ParameterName="sizeHint"Type="System.Int32" />
228
228
</Parameters>
229
229
<Docs>
230
-
<paramname="sizeHint">To be added.</param>
231
-
<summary>Returns a <seecref="T:System.Span`1" /> to write to that is at least a specified length.
232
-
</summary>
230
+
<paramname="sizeHint">The minimum requested length of the <seecref="T:System.Span`1" />.</param>
231
+
<summary>Returns a <seecref="T:System.Span`1" /> to write to that is at least a specified length.</summary>
233
232
<returns>A span of at least <paramrefname="sizeHint" /> in length. If <paramrefname="sizeHint" /> is not provided or is equal to 0, some non-empty buffer is returned.</returns>
234
233
<remarks>
235
234
<formattype="text/markdown"><![CDATA[
@@ -300,9 +299,9 @@ This method never returns <xref:System.Memory%601.Empty?displayProperty=nameWith
300
299
</ReturnValue>
301
300
<Docs>
302
301
<summary>Gets a <seecref="T:System.ReadOnlySpan`1" /> that contains the data written to the underlying buffer so far.</summary>
303
-
<value>To be added.</value>
302
+
<value>The data written to the underlying buffer.</value>
Copy file name to clipboardExpand all lines: xml/System.Buffers/SequenceReaderExtensions.xml
+26-29Lines changed: 26 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
</Base>
15
15
<Interfaces />
16
16
<Docs>
17
-
<summary>To be added.</summary>
17
+
<summary>Provides extended functionality for the <seecref="T:System.Buffers.SequenceReader`1" /> class that allows reading of endian specific numeric values from binary data.</summary>
<paramname="reader">The byte sequence reader instance from which the value is to be read.</param>
42
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as big endian.</param>
43
+
<summary>Tries to read an <seecref="System.Int16" /> as big endian.</summary>
44
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int16" />.</returns>
<paramname="reader">The byte sequence reader from which to read the value.</param>
69
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as big endian.</param>
70
+
<summary>Tries to read an <seecref="System.Int32" /> as big endian.</summary>
71
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int32" />.</returns>
<summary>Reads a big-endian <seecref="T:System.Int16" />.</summary>
98
-
<returns>
99
-
<seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int16" />.</returns>
95
+
<paramname="reader">The byte sequence reader instance from which the value is to be read.</param>
96
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as big endian.</param>
97
+
<summary>Tries to read an <seecref="System.Int64" /> as big endian.</summary>
98
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int64" />.</returns>
<paramname="reader">The byte sequence reader instance from which the value is to be read.</param>
123
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as little endian.</param>
124
+
<summary>Tries to read an <seecref="System.Int16" /> as little endian.</summary>
125
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int16" />.</returns>
<summary>Reads a big-endian <seecref="T:System.Int32" />.</summary>
153
-
<returns>
154
-
<seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int32" />.</returns>
149
+
<paramname="reader">The byte sequence reader instance from which the value is to be read.</param>
150
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as little endian.</param>
151
+
<summary>Tries to read an <seecref="System.Int32" /> as little endian.</summary>
152
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int32" />.</returns>
<summary>Reads a little-endian <seecref="T:System.Int16" />.</summary>
181
-
<returns>
182
-
<seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int16" />.</returns>
176
+
<paramname="reader">The byte sequence reader instance from which the value is to be read.</param>
177
+
<paramname="value">When the method returns, the value read out of the byte sequence reader, as little endian.</param>
178
+
<summary>Tries to read an <seecref="System.Int64" /> as little endian.</summary>
179
+
<returns><seelangword="true" /> if the read operation is successful; <seelangword="false" /> if there isn't enough data for an <seecref="T:System.Int64" />.</returns>
Copy file name to clipboardExpand all lines: xml/System.Buffers/SequenceReader`1.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,8 @@
29
29
</Attribute>
30
30
</Attributes>
31
31
<Docs>
32
-
<typeparamname="T">To be added.</typeparam>
33
-
<summary>To be added.</summary>
32
+
<typeparamname="T">The type of the read-only sequence.</typeparam>
33
+
<summary>Provides methods for reading binary and text data out of a <seecref="T:System.Buffers.ReadOnlySequence`1" /> with a focus on performance and minimal or zero heap allocations.</summary>
34
34
<remarks>To be added.</remarks>
35
35
</Docs>
36
36
<Members>
@@ -207,7 +207,7 @@
207
207
<ParameterName="value3"Type="T" />
208
208
</Parameters>
209
209
<Docs>
210
-
<paramname="value0">To be added.</param>
210
+
<paramname="value0">The first value to skip.</param>
211
211
<paramname="value1">The second value to skip.</param>
212
212
<paramname="value2">The third value to skip.</param>
213
213
<paramname="value3">The fourth value to skip.</param>
@@ -898,4 +898,4 @@ This method copies a fixed amount of data out of the sequence if possible. It do
0 commit comments