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

Method project

python/collaboration/snapshot.py:56–65  ·  view source on GitHub ↗

Owning Project :return: Project object

(self)

Source from the content-addressed store, hash-verified

54
55 @property
56 def project(self) -> 'project.RemoteProject':
57 """
58 Owning Project
59
60 :return: Project object
61 """
62 value = core.BNCollaborationSnapshotGetProject(self._handle)
63 if value is None:
64 raise RuntimeError(util._last_error())
65 return project.RemoteProject(handle=value)
66
67 @property
68 def remote(self) -> 'remote.Remote':

Callers

nothing calls this directly

Calls 1

RemoteProjectMethod · 0.80

Tested by

no test coverage detected