Convert.TryFromBase64String(String, Span<Byte>, Int32) Method

Definition

Tries to convert the specified string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.

public:
 static bool TryFromBase64String(System::String ^ s, Span<System::Byte> bytes, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryFromBase64String (string s, Span<byte> bytes, out int bytesWritten);
static member TryFromBase64String : string * Span<byte> * int -> bool
Public Shared Function TryFromBase64String (s As String, bytes As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

Parameters

s
String

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. When this method returns false, either the span remains unmodified or contains an incomplete conversion of s, 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.

Exceptions

Applies to