|
20880 | 20880 | </Parameters> |
20881 | 20881 | <Docs> |
20882 | 20882 | <param name="chars">A span containing the string representation that is encoded with base-64 digits.</param> |
20883 | | - <param name="bytes">When this method returns <see langword="true" />, the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="chars" />, up to the last valid character.</param> |
20884 | | - <param name="bytesWritten">When this method returns, the number of bytes that were written in <paramref name="bytes" />.</param> |
| 20883 | + <param name="bytes">The span in which to write the converted 8-bit unsigned integers. If this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="chars" />, up to the last valid character.</param> |
| 20884 | + <param name="bytesWritten">When this method returns, contains the number of bytes that were written in <paramref name="bytes" />.</param> |
20885 | 20885 | <summary>Tries to convert the specified span containing a string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.</summary> |
20886 | 20886 | <returns> |
20887 | 20887 | <see langword="true" /> if the conversion was successful; otherwise, <see langword="false" />.</returns> |
|
20923 | 20923 | </Parameters> |
20924 | 20924 | <Docs> |
20925 | 20925 | <param name="s">The string representation that is encoded with base-64 digits.</param> |
20926 | | - <param name="bytes">When this method returns <see langword="true" />, the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="s" />, up to the last valid character.</param> |
20927 | | - <param name="bytesWritten">When this method returns, the number of bytes that were written in <paramref name="bytes" />.</param> |
| 20926 | + <param name="bytes">The span in which to write the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="s" />, up to the last valid character.</param> |
| 20927 | + <param name="bytesWritten">When this method returns, contains the number of bytes that were written in <paramref name="bytes" />.</param> |
20928 | 20928 | <summary>Tries to convert the specified string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.</summary> |
20929 | 20929 | <returns> |
20930 | 20930 | <see langword="true" /> if the conversion was successful; otherwise, <see langword="false" />.</returns> |
|
20968 | 20968 | </Parameters> |
20969 | 20969 | <Docs> |
20970 | 20970 | <param name="bytes">A read-only span of 8-bit unsigned integers.</param> |
20971 | | - <param name="chars">When this method returns <see langword="true" />, a span containing the string representation in base 64 of the elements in <paramref name="bytes" />. If the length of <paramref name="bytes" /> is 0, or when this method returns <paramref name="false" />, nothing is written into this parameter.</param> |
20972 | | - <param name="charsWritten">When this method returns, the total number of characters written into <paramref name="chars" />.</param> |
| 20971 | + <param name="chars">The span in which to write the string representation in base 64 of the elements in <paramref name="bytes" />. If the length of <paramref name="bytes" /> is 0, or when this method returns <paramref name="false" />, nothing is written into this parameter.</param> |
| 20972 | + <param name="charsWritten">When this method returns, contains the total number of characters written into <paramref name="chars" />.</param> |
20973 | 20973 | <param name="options">One of the enumeration values that specify whether to insert line breaks in the return value. The default value is <see cref="F:System.Base64FormattingOptions.None" />.</param> |
20974 | 20974 | <summary>Tries to convert the 8-bit unsigned integers inside the specified read-only span into their equivalent string representation that is encoded with base-64 digits. You can optionally specify whether to insert line breaks in the return value.</summary> |
20975 | 20975 | <returns> |
|
0 commit comments