Convert.TryFromBase64String(String, Span<Byte>, Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 の数字でエンコードされた文字列形式。
変換された 8 ビット符号なし整数を書き込むスパン。 このメソッドから false
が返される場合、スパンが変更されていないか、最後の有効な文字までの s
の不完全な変換が含まれています。
- bytesWritten
- Int32
このメソッドが返されるときに、で書 bytes
き込まれたバイト数を格納します。
戻り値
変換が成功した場合は true
。それ以外の場合は false
。
例外
s
が null
です。