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

Method remote

python/collaboration/snapshot.py:68–77  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

66
67 @property
68 def remote(self) -> 'remote.Remote':
69 """
70 Owning Remote
71
72 :return: Remote object
73 """
74 value = core.BNCollaborationSnapshotGetRemote(self._handle)
75 if value is None:
76 raise RuntimeError(util._last_error())
77 return remote.Remote(handle=value)
78
79 @property
80 def url(self) -> str:

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected