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

Method remote

python/collaboration/user.py:23–32  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected