|
705 | 705 | <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>
|
706 | 706 | <summary>Decodes the span of unicode ASCII chars represented as Base64Url into binary data.</summary>
|
707 | 707 | <returns>
|
708 |
| - <see langword="true" /> if bytes decoded successfully, otherwise <see langword="false" />.</returns> |
| 708 | + <see langword="true" /> if bytes decoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
709 | 709 | <remarks>To be added.</remarks>
|
710 | 710 | <exception cref="T:System.FormatException">
|
711 | 711 | <para>
|
|
740 | 740 | <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>
|
741 | 741 | <summary>Decodes the span of UTF-8 encoded text represented as Base64Url into binary data.</summary>
|
742 | 742 | <returns>
|
743 |
| - <see langword="true" /> if bytes decoded successfully, otherwise <see langword="false" />.</returns> |
| 743 | + <see langword="true" /> if bytes decoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
744 | 744 | <remarks>To be added.</remarks>
|
745 | 745 | <exception cref="T:System.FormatException">
|
746 | 746 | <para>
|
|
775 | 775 | <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>
|
776 | 776 | <summary>Encodes the span of binary data into unicode ASCII chars represented as Base64Url.</summary>
|
777 | 777 | <returns>
|
778 |
| - <see langword="true" /> if chars encoded successfully, otherwise <see langword="false" />.</returns> |
| 778 | + <see langword="true" /> if chars encoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
779 | 779 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
780 | 780 | </Docs>
|
781 | 781 | </Member>
|
|
805 | 805 | <param name="bytesWritten">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>
|
806 | 806 | <summary>Encodes the span of binary data into UTF-8 encoded chars represented as Base64Url.</summary>
|
807 | 807 | <returns>
|
808 |
| - <see langword="true" /> if bytes encoded successfully, otherwise <see langword="false" />.</returns> |
| 808 | + <see langword="true" /> if bytes encoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
809 | 809 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
810 | 810 | </Docs>
|
811 | 811 | </Member>
|
|
844 | 844 | <para>The encoded text output is larger than the binary data contained in the input (the operation inflates the data).</para>
|
845 | 845 | </summary>
|
846 | 846 | <returns>
|
847 |
| - <see langword="true" /> if bytes encoded successfully, otherwise <see langword="false" />.</returns> |
| 847 | + <see langword="true" /> if bytes encoded successfully; <see langword="false" /> if <paramref name="destination" /> is too small.</returns> |
848 | 848 | <remarks>This implementation of the base64url encoding omits the optional padding characters.</remarks>
|
849 | 849 | </Docs>
|
850 | 850 | </Member>
|
|
0 commit comments