Utf8JsonWriter.WriteBase64StringValue(ReadOnlySpan<Byte>) 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.
Writes the raw bytes value as a Base64 encoded JSON string as an element of a JSON array.
public:
void WriteBase64StringValue(ReadOnlySpan<System::Byte> bytes);
public void WriteBase64StringValue (ReadOnlySpan<byte> bytes);
member this.WriteBase64StringValue : ReadOnlySpan<byte> -> unit
Public Sub WriteBase64StringValue (bytes As ReadOnlySpan(Of Byte))
Parameters
- bytes
- ReadOnlySpan<Byte>
The binary data to be written as a Base64 encoded JSON string element of a JSON array.
Exceptions
The specified value is too large.
Validation is enabled, and this method would result in writing invalid JSON.
Remarks
The maximum allowed size of the binary data to write as Base64 is 125,000,000 bytes (or approximately 125 MB). Exceeding this limit results in an ArgumentException being thrown.
The bytes are encoded before writing.
Applies to
.NET