Get the internal id of the server :return: Id of the server
()
| 192 | |
| 193 | |
| 194 | def server_id() -> str: |
| 195 | """ |
| 196 | Get the internal id of the server |
| 197 | |
| 198 | :return: Id of the server |
| 199 | """ |
| 200 | if not is_connected(): |
| 201 | connect() |
| 202 | value = core.BNGetEnterpriseServerId() |
| 203 | if value is None: |
| 204 | raise RuntimeError(last_error()) |
| 205 | return value |
| 206 | |
| 207 | |
| 208 | def server_version() -> int: |
nothing calls this directly
no test coverage detected