Set the url of the Enterprise Server. .. note:: This will raise an Exception if the server is already initialized :param url: New Enterprise Server url
(url: str)
| 166 | |
| 167 | |
| 168 | def set_server_url(url: str): |
| 169 | """ |
| 170 | Set the url of the Enterprise Server. |
| 171 | |
| 172 | .. note:: This will raise an Exception if the server is already initialized |
| 173 | |
| 174 | :param url: New Enterprise Server url |
| 175 | """ |
| 176 | if not core.BNSetEnterpriseServerUrl(url): |
| 177 | raise RuntimeError(last_error()) |
| 178 | |
| 179 | |
| 180 | def server_name() -> str: |
nothing calls this directly
no test coverage detected