If this remote is the same as the Enterprise License server :return: True if the same
(self)
| 201 | |
| 202 | @property |
| 203 | def is_enterprise(self) -> bool: |
| 204 | """ |
| 205 | If this remote is the same as the Enterprise License server |
| 206 | |
| 207 | :return: True if the same |
| 208 | """ |
| 209 | if not self.has_loaded_metadata: |
| 210 | self.load_metadata() |
| 211 | return core.BNRemoteIsEnterprise(self._handle) |
| 212 | |
| 213 | def load_metadata(self): |
| 214 | """ |
nothing calls this directly
no test coverage detected