Determine if the Enterprise Server is currently connected. :return: True if connected
()
| 46 | |
| 47 | |
| 48 | def is_connected() -> bool: |
| 49 | """ |
| 50 | Determine if the Enterprise Server is currently connected. |
| 51 | |
| 52 | :return: True if connected |
| 53 | """ |
| 54 | return core.BNIsEnterpriseServerConnected() |
| 55 | |
| 56 | |
| 57 | def authenticate_with_credentials(username: str, password: str, remember: bool = True): |
no outgoing calls
no test coverage detected