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

Method backing_file

python/externallibrary.py:58–67  ·  view source on GitHub ↗

Get the file backing this external library :return: The file backing this external library or None

(self)

Source from the content-addressed store, hash-verified

56
57 @property
58 def backing_file(self) -> Optional[project.ProjectFile]:
59 """
60 Get the file backing this external library
61
62 :return: The file backing this external library or None
63 """
64 handle = core.BNExternalLibraryGetBackingFile(self._handle)
65 if handle is None:
66 return None
67 return project.ProjectFile(handle)
68
69 @backing_file.setter
70 def backing_file(self, new_file: Optional[project.ProjectFile]):

Callers

nothing calls this directly

Calls 1

ProjectFileMethod · 0.80

Tested by

no test coverage detected