Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetBytesFromBase64()

byte[] System.Text.Json.JsonElement.GetBytesFromBase64 ( )
inline

Definition at line 271 of file JsonElement.cs.

272 {
273 if (TryGetBytesFromBase64(out byte[] value))
274 {
275 return value;
276 }
277 throw ThrowHelper.GetFormatException();
278 }
bool TryGetBytesFromBase64([NotNullWhen(true)] out byte[]? value)

References System.Text.Json.ThrowHelper.GetFormatException(), System.Text.Json.JsonElement.TryGetBytesFromBase64(), and System.value.