|
378 | 378 | <Docs>
|
379 | 379 | <param name="source">The input span which contains binary data that needs to be encoded.</param>
|
380 | 380 | <param name="destination">The output span which contains the result of the operation, i.e. the ASCII chars in Base64Url.</param>
|
381 |
| - <summary>Encodes the span of binary data into unicode ASCII chars represented as Base64Url.</summary> |
| 381 | + <summary>Encodes the span of binary data into Unicode ASCII chars represented as Base64Url.</summary> |
382 | 382 | <returns>The number of bytes written into the destination span. This can be used to slice the output for subsequent calls, if necessary.</returns>
|
383 | 383 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
384 | 384 | <exception cref="T:System.ArgumentException">The buffer in <paramref name="destination" /> is too small to hold the encoded output.</exception>
|
|
791 | 791 | <param name="source">The input span which contains ASCII chars in Base64Url that needs to be decoded.</param>
|
792 | 792 | <param name="destination">The output span which contains the result of the operation, i.e. the decoded binary data.</param>
|
793 | 793 | <param name="bytesWritten">When this method returns, contains the number of bytes written into the output span. This can be used to slice the output for subsequent calls, if necessary. This parameter is treated as uninitialized.</param>
|
794 |
| - <summary>Decodes the span of unicode ASCII chars represented as Base64Url into binary data.</summary> |
| 794 | + <summary>Decodes the span of Unicode ASCII chars represented as Base64Url into binary data.</summary> |
795 | 795 | <returns>
|
796 | 796 | <see langword="true" /> if bytes decoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns>
|
797 | 797 | <remarks>To be added.</remarks>
|
|
869 | 869 | <param name="source">The input span which contains binary data that needs to be encoded.</param>
|
870 | 870 | <param name="destination">The output span which contains the result of the operation, i.e. the ASCII chars in Base64Url.</param>
|
871 | 871 | <param name="charsWritten">When this method returns, contains the number of chars written into the output span. This can be used to slice the output for subsequent calls, if necessary. This parameter is treated as uninitialized.</param>
|
872 |
| - <summary>Encodes the span of binary data into unicode ASCII chars represented as Base64Url.</summary> |
| 872 | + <summary>Encodes the span of binary data into Unicode ASCII chars represented as Base64Url.</summary> |
873 | 873 | <returns>
|
874 | 874 | <see langword="true" /> if chars encoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns>
|
875 | 875 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
|
948 | 948 | <para>The encoded text output is larger than the binary data contained in the input (the operation inflates the data).</para>
|
949 | 949 | </summary>
|
950 | 950 | <returns>
|
951 |
| - <see langword="true" /> if bytes encoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
| 951 | + <see langword="true" /> if bytes encoded successfully; <see langword="false" /> if <paramref name="buffer" /> is too small to fit the result.</returns> |
952 | 952 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
953 | 953 | </Docs>
|
954 | 954 | </Member>
|
|
0 commit comments