# nlohmann::json_sax::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.