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

Method file

python/collaboration/changeset.py:38–47  ·  view source on GitHub ↗

Relevant remote File object :return: File object

(self)

Source from the content-addressed store, hash-verified

36
37 @property
38 def file(self) -> 'file.RemoteFile':
39 """
40 Relevant remote File object
41
42 :return: File object
43 """
44 value = core.BNCollaborationChangesetGetFile(self._handle)
45 if value is None:
46 raise RuntimeError(util._last_error())
47 return file.RemoteFile(handle=value)
48
49 @property
50 def snapshot_ids(self) -> List[int]:

Callers

nothing calls this directly

Calls 1

RemoteFileMethod · 0.80

Tested by

no test coverage detected