Get the display name of the server :return: Display name of the server
()
| 178 | |
| 179 | |
| 180 | def server_name() -> str: |
| 181 | """ |
| 182 | Get the display name of the server |
| 183 | |
| 184 | :return: Display name of the server |
| 185 | """ |
| 186 | if not is_connected(): |
| 187 | connect() |
| 188 | value = core.BNGetEnterpriseServerName() |
| 189 | if value is None: |
| 190 | raise RuntimeError(last_error()) |
| 191 | return value |
| 192 | |
| 193 | |
| 194 | def server_id() -> str: |
nothing calls this directly
no test coverage detected