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

Method core_file

python/collaboration/file.py:89–93  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

87
88 @property
89 def core_file(self) -> 'ProjectFile':
90 core_handle = core.BNRemoteFileGetCoreFile(self._handle)
91 if core_handle is None:
92 raise RuntimeError(util._last_error())
93 return ProjectFile(handle=ctypes.cast(core_handle, ctypes.POINTER(core.BNProjectFile)))
94
95 @property
96 def project(self) -> 'project.RemoteProject':

Callers

nothing calls this directly

Calls 1

ProjectFileClass · 0.50

Tested by

no test coverage detected