Load metadata from the Remote, including unique id and versions :raises RuntimeError: If there was an error
(self)
| 211 | return core.BNRemoteIsEnterprise(self._handle) |
| 212 | |
| 213 | def load_metadata(self): |
| 214 | """ |
| 215 | Load metadata from the Remote, including unique id and versions |
| 216 | |
| 217 | :raises RuntimeError: If there was an error |
| 218 | """ |
| 219 | if not core.BNRemoteLoadMetadata(self._handle): |
| 220 | raise RuntimeError(util._last_error()) |
| 221 | |
| 222 | def request_authentication_token(self, username: str, password: str) -> Optional[str]: |
| 223 | """ |
no outgoing calls
no test coverage detected