Convert.TryFromBase64String(String, Span<Byte>, Int32) メソッド

定義

Base 64 の数字でエンコードされた指定された文字列形式を、8 ビット符号なし整数のスパンに変換しようとします。

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

パラメーター

s
String

Base 64 の数字でエンコードされた文字列形式。

bytes
Span<Byte>

変換された 8 ビット符号なし整数を書き込むスパン。 このメソッドから false が返される場合、スパンが変更されていないか、最後の有効な文字までの s の不完全な変換が含まれています。

bytesWritten
Int32

このメソッドが返されるときに、で書 bytesき込まれたバイト数を格納します。

戻り値

Boolean

変換が成功した場合は true。それ以外の場合は false

例外

snullです。

適用対象