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

Method remote

python/collaboration/permission.py:26–35  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected