Get the current node value as ``bytes``. :return: If the current node is binary, its value, ``b""`` otherwise.
(self)
| 1351 | return None |
| 1352 | |
| 1353 | def get_binary(self) -> bytes: |
| 1354 | """ |
| 1355 | Get the current node value as ``bytes``. |
| 1356 | |
| 1357 | :return: If the current node is binary, its value, ``b""`` otherwise. |
| 1358 | """ |
| 1359 | return pn_data_get_binary(self._data) |
| 1360 | |
| 1361 | def get_string(self) -> str: |
| 1362 | """ |
nothing calls this directly
no test coverage detected