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

Method project

python/collaboration/file.py:96–105  ·  view source on GitHub ↗

Owning Project :return: Project object

(self)

Source from the content-addressed store, hash-verified

94
95 @property
96 def project(self) -> 'project.RemoteProject':
97 """
98 Owning Project
99
100 :return: Project object
101 """
102 value = core.BNRemoteFileGetProject(self._handle)
103 if value is None:
104 raise RuntimeError(util._last_error())
105 return project.RemoteProject(handle=value)
106
107 @property
108 def remote(self) -> 'remote.Remote':

Callers

nothing calls this directly

Calls 1

RemoteProjectMethod · 0.80

Tested by

no test coverage detected