Files
json/api/json_sax/binary.md
T
2026-07-08 18:19:46 +00:00

41 lines
557 B
Markdown

# <small>nlohmann::json_sax::</small>binary
```cpp
virtual bool binary(binary_t& val) = 0;
```
A binary value was read.
## Parameters
`val` (in)
: binary value
## Return value
Whether parsing should proceed.
## Notes
It is safe to move the passed binary value.
## Examples
??? example
The example below shows how the SAX interface is used.
```cpp
--8<-- "examples/sax_parse__binary.cpp"
```
Output:
```json
--8<-- "examples/sax_parse__binary.output"
```
## Version history
- Added in version 3.8.0.