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

Method file

python/collaboration/snapshot.py:44–53  ·  view source on GitHub ↗

Owning File :return: File object

(self)

Source from the content-addressed store, hash-verified

42
43 @property
44 def file(self) -> 'file.RemoteFile':
45 """
46 Owning File
47
48 :return: File object
49 """
50 value = core.BNCollaborationSnapshotGetFile(self._handle)
51 if value is None:
52 raise RuntimeError(util._last_error())
53 return file.RemoteFile(handle=value)
54
55 @property
56 def project(self) -> 'project.RemoteProject':

Callers

nothing calls this directly

Calls 1

RemoteFileMethod · 0.80

Tested by

no test coverage detected