Determine if you have authenticated to the Enterprise Server. :return: True if you are authenticated
()
| 121 | |
| 122 | |
| 123 | def is_authenticated() -> bool: |
| 124 | """ |
| 125 | Determine if you have authenticated to the Enterprise Server. |
| 126 | |
| 127 | :return: True if you are authenticated |
| 128 | """ |
| 129 | return core.BNIsEnterpriseServerAuthenticated() |
| 130 | |
| 131 | |
| 132 | def username() -> Optional[str]: |