MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / server_version

Method server_version

python/collaboration/remote.py:138–148  ·  view source on GitHub ↗

Version of software running on the server. If metadata has not been pulled, it will be pulled upon calling this. :return: Server version number :raises RuntimeError: If there was an error

(self)

Source from the content-addressed store, hash-verified

136
137 @property
138 def server_version(self) -> int:
139 """
140 Version of software running on the server. If metadata has not been pulled, it will
141 be pulled upon calling this.
142
143 :return: Server version number
144 :raises RuntimeError: If there was an error
145 """
146 if not self.has_loaded_metadata:
147 self.load_metadata()
148 return core.BNRemoteGetServerVersion(self._handle)
149
150 @property
151 def server_build_id(self) -> str:

Callers

nothing calls this directly

Calls 1

load_metadataMethod · 0.95

Tested by

no test coverage detected