Convert.TryFromBase64String(String, Span<Byte>, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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
s
is null
.