|
221 | 221 | <Parameter Name="isFinalBlock" Type="System.Boolean" Index="4" FrameworkAlternate="netcore-3.0" />
|
222 | 222 | </Parameters>
|
223 | 223 | <Docs>
|
224 |
| - <param name="source">To be added.</param> |
225 |
| - <param name="destination">To be added.</param> |
226 |
| - <param name="charsConsumed">To be added.</param> |
227 |
| - <param name="charsWritten">To be added.</param> |
228 |
| - <param name="isFinalBlock">To be added.</param> |
229 |
| - <summary>To be added.</summary> |
230 |
| - <returns>To be added.</returns> |
231 |
| - <remarks>To be added.</remarks> |
| 224 | + <param name="source">A source buffer containing the characters to encode.</param> |
| 225 | + <param name="destination">The destination buffer to which the encoded form of <paramref name="source" /> will be written.</param> |
| 226 | + <param name="charsConsumed">The number of characters consumed from the <paramref name="source" /> buffer.</param> |
| 227 | + <param name="charsWritten">The number of characters written to the <paramref name="destination" /> buffer.</param> |
| 228 | + <param name="isFinalBlock"><see langword="true" /> to indicate there is no further source data that needs to be encoded; otherwise, <see langword="false" />.</param> |
| 229 | + <summary>Encodes the supplied characters.</summary> |
| 230 | + <returns>An enumeration value that describes the result of the encoding operation.</returns> |
| 231 | + <remarks> |
| 232 | + <format type="text/markdown"><![CDATA[ |
| 233 | +
|
| 234 | +## Remarks |
| 235 | +
|
| 236 | +The buffers `source` and `destination` must not overlap. |
| 237 | +
|
| 238 | + ]]></format> |
| 239 | + </remarks> |
232 | 240 | </Docs>
|
233 | 241 | </Member>
|
234 | 242 | <Member MemberName="EncodeUtf8">
|
|
257 | 265 | <param name="utf8Destination">The destination buffer to which the encoded form of <paramref name="utf8Source" /> will be written.</param>
|
258 | 266 | <param name="bytesConsumed">The number of bytes consumed from the <paramref name="utf8Source" /> buffer.</param>
|
259 | 267 | <param name="bytesWritten">The number of bytes written to the <paramref name="utf8Destination" /> buffer.</param>
|
260 |
| - <param name="isFinalBlock"> |
261 |
| - <see langword="true" /> if there is further source data that needs to be encoded; otherwise, <see langword="false" />.</param> |
| 268 | + <param name="isFinalBlock"><see langword="true" /> to indicate there is no further source data that needs to be encoded; otherwise, <see langword="false" />.</param> |
262 | 269 | <summary>Encodes the supplied UTF-8 text.</summary>
|
263 | 270 | <returns>A status code that describes the result of the encoding operation.</returns>
|
264 | 271 | <remarks>
|
|
0 commit comments