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

Method remote

python/collaboration/group.py:24–33  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

22
23 @property
24 def remote(self) -> 'remote.Remote':
25 """
26 Owning Remote
27
28 :return: Remote object
29 """
30 value = core.BNCollaborationGroupGetRemote(self._handle)
31 if value is None:
32 raise RuntimeError(util._last_error())
33 return remote.Remote(handle=value)
34
35 @property
36 def url(self) -> str:

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected