Bearbeiten

Convert.TryFromBase64Chars Method

Definition

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.

public:
 static bool TryFromBase64Chars(ReadOnlySpan<char> chars, Span<System::Byte> bytes, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryFromBase64Chars (ReadOnlySpan<char> chars, Span<byte> bytes, out int bytesWritten);
static member TryFromBase64Chars : ReadOnlySpan<char> * Span<byte> * int -> bool
Public Shared Function TryFromBase64Chars (chars As ReadOnlySpan(Of Char), bytes As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

Parameters

chars
ReadOnlySpan<Char>

A span containing the string representation that is encoded with base-64 digits.

bytes
Span<Byte>

The span in which to write the converted 8-bit unsigned integers. If this method returns false, either the span remains unmodified or contains an incomplete conversion of chars, up to the last valid character.

bytesWritten
Int32

When this method returns, contains the number of bytes that were written in bytes.

Returns

true if the conversion was successful; otherwise, false.

Applies to